diff --git a/.flake8 b/.flake8 deleted file mode 100644 index fd1d86b57..000000000 --- a/.flake8 +++ /dev/null @@ -1,7 +0,0 @@ -[flake8] -# Rule definitions: http://flake8.pycqa.org/en/latest/user/error-codes.html -# W503: line break before binary operator -exclude = venv*,__pycache__,node_modules,cache,migrations,build -ignore = W503 -max-complexity = 14 -max-line-length = 120 diff --git a/setup.cfg b/setup.cfg index 77880982e..84c3eb929 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,7 @@ xfail_strict=true [flake8] +exclude = venv*,__pycache__,node_modules,cache,migrations,build # W504 line break after binary operator extend_ignore=B306, W504 select=B901