From bea909f997bcef51e2624b9eea42c8fbe7115aaa Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 1 Jul 2020 17:09:31 -0700 Subject: updates to Makefile --- python/.flake8 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 python/.flake8 (limited to 'python/.flake8') diff --git a/python/.flake8 b/python/.flake8 new file mode 100644 index 00000000..49935ced --- /dev/null +++ b/python/.flake8 @@ -0,0 +1,7 @@ +[flake8] +# TODO: ANN for better annotation coverage +select = C,E,F,W +ignore = F405,F403,W503,E231,E203,E501,E226,E711,E713,E265,ANN101,ANN204,ANN102 +max-complexity = 20 +exclude = .git,__pycache__,.venv +max-line-length = 120 -- cgit v1.2.3 From 8583c6866f2bb89e8dfe5f5e5893048c2fd854e7 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 1 Jul 2020 18:35:47 -0700 Subject: tweak flake8 params --- python/.flake8 | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'python/.flake8') diff --git a/python/.flake8 b/python/.flake8 index 49935ced..34f6131c 100644 --- a/python/.flake8 +++ b/python/.flake8 @@ -1,7 +1,13 @@ [flake8] # TODO: ANN for better annotation coverage select = C,E,F,W -ignore = F405,F403,W503,E231,E203,E501,E226,E711,E713,E265,ANN101,ANN204,ANN102 -max-complexity = 20 +# The ignores starting with "E251" should be removed after using 'black' +ignore = F405,F403,W503,E231,E203,E501,E226,E711,E713,E265,ANN101,ANN204,ANN102,E251,E128,E302,E261,E241,E201,E202,E266,E124,E305,E225,W504,E123,E122,E125,E121,E129,E126,E712,W191,E101 +# TODO: should reduce max-complexity +max-complexity = 50 exclude = .git,__pycache__,.venv max-line-length = 120 +per-file-ignores = + */__init__.py: F401 + tests/*.py: F401,F811 + tests/transform_csl.py: W291 -- cgit v1.2.3