From d8dfdac8d75f4af27aac6f61f9beda00e255e5ff Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Thu, 29 Feb 2024 05:27:03 +0000 Subject: [PATCH] Add tox.ini to make things nicer and not being bugged by line too long Summary ^ Test plan --- tox.ini | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..71d17ce --- /dev/null +++ b/tox.ini @@ -0,0 +1,5 @@ +[flake8] +ignore = D203, E501, W503, E203 +exclude = .git,__pycache__,docs/source/conf.py,old,build,dist +max-complexity = 10 +max-line-length = 120