Update defaults

McCabe reports C90* not C* and Flake8 2 used to exclude .eggs and *.egg
This commit is contained in:
Ian Cordasco 2016-06-30 06:54:10 -05:00
parent 6208a4969b
commit f963641e93
No known key found for this signature in database
GPG key ID: 656D3395E4A9791A

View file

@ -1,8 +1,8 @@
"""Constants that define defaults."""
EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg'
IGNORE = 'E121,E123,E126,E226,E24,E704,W503,W504'
SELECT = 'E,F,W,C'
SELECT = 'E,F,W,C90'
MAX_LINE_LENGTH = 79
TRUTHY_VALUES = set(['true', '1', 't'])