mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-05 04:36:52 +00:00
Presently we're working on having two singly-responsible classes that will be easy to test and ideally easier to reason about.
8 lines
200 B
Python
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')
|