Add a module with defaults

This commit is contained in:
Ian Cordasco 2016-01-11 23:15:23 -06:00
parent 6940ef3aaf
commit 4018988585

5
flake8/defaults.py Normal file
View file

@ -0,0 +1,5 @@
"""Constants that define defaults."""
EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
IGNORE = 'E121,E123,E126,E226,E24,E704'
MAX_LINE_LENGTH = 79