mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 14:50:16 +00:00
15 lines
573 B
INI
15 lines
573 B
INI
[flake8]
|
|
exclude = .git,__pycache__,docs/,pipenv/vendor/,get-pipenv.py,setup.py
|
|
ignore =
|
|
# The default ignore list:
|
|
E121,E123,E126,E226,E24,E704,
|
|
# Our additions:
|
|
# E127: continuation line over-indented for visual indent
|
|
# E128: continuation line under-indented for visual indent
|
|
# E129: visually indented line with same indent as next logical line
|
|
# E222: multiple spaces after operator
|
|
# E231: missing whitespace after ','
|
|
# E402: module level import not at top of file
|
|
# E501: line too long
|
|
E127,E128,E129,E222,E231,E402,E501
|