flake8/flake8/defaults.py
Ian Cordasco 12e71b0372 Incorporate more parsing logic from pycodestyle
Presently we're working on having two singly-responsible classes that
will be easy to test and ideally easier to reason about.
2016-02-26 23:16:33 -06:00

8 lines
200 B
Python

"""Constants that define defaults."""
EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
IGNORE = 'E121,E123,E126,E226,E24,E704'
MAX_LINE_LENGTH = 79
# Other consants
WHITESPACE = frozenset(' \t')