mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-03 03:56:52 +00:00
16 lines
295 B
INI
16 lines
295 B
INI
[flake8]
|
|
# This is a flake8 config, there are many like it, but this is mine
|
|
ignore =
|
|
# Disable E123
|
|
E123,
|
|
# Disable W234
|
|
W234,
|
|
# Also disable E111
|
|
E111
|
|
exclude =
|
|
# Exclude foo/
|
|
foo/,
|
|
# Exclude bar/ while we're at it
|
|
bar/,
|
|
# Exclude bogus/
|
|
bogus/
|