Skip to content

Commit af26a60

Browse files
committed
add setup.cfg for flake8 settings
1 parent 57ea416 commit af26a60

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

setup.cfg

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[flake8]
2+
max-line-length = 99
3+
# flake8 defaults: E121,E123,E126,E226,E24,E704,W503,W504
4+
# custom additions:
5+
# E731: sometimes we like lambda
6+
ignore = E121,E123,E126,E226,E24,E704,W503,W504,E731
7+
exclude = .git,__pycache__,.tox,.eggs,*.egg,.pybuild/,build/,debian/

0 commit comments

Comments
 (0)