2015-01-16 19:30:57 +03:00
|
|
|
[pep8]
|
2015-02-15 23:42:29 +03:00
|
|
|
exclude = .git,__pycache__,.vagrant,build,vendor
|
2015-02-15 23:47:24 +03:00
|
|
|
# E121,E123,E126,E226,E24,E704: Ignored in default pep8 config:
|
|
|
|
# https://github.com/jcrocholl/pep8/blob/8ca030e2d8f6d377631bae69a18307fb2d051049/pep8.py#L68
|
|
|
|
# Our additions...
|
|
|
|
# E501: line too long
|
|
|
|
ignore = E121,E123,E126,E226,E24,E704,E501
|
2015-01-16 19:30:57 +03:00
|
|
|
|
|
|
|
[flake8]
|
2015-02-15 23:42:29 +03:00
|
|
|
exclude = .git,__pycache__,.vagrant,build,vendor
|
2015-02-15 23:47:24 +03:00
|
|
|
# The ignore list for pep8 above, plus our own PyFlakes addition:
|
|
|
|
# F403: 'from module import *' used; unable to detect undefined names
|
|
|
|
ignore = E121,E123,E126,E226,E24,E704,E501,F403
|