summaryrefslogtreecommitdiff
path: root/flake8/defaults.py
blob: 76829a540e60eca25e38f463566ddcc7a7332e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
"""Constants that define defaults."""

EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
IGNORE = 'E121,E123,E126,E226,E24,E704,W503,W504'
SELECT = 'E,F,W,C'
MAX_LINE_LENGTH = 79

TRUTHY_VALUES = set(['true', '1', 't'])

# Other consants
WHITESPACE = frozenset(' \t')