You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
422 B
19 lines
422 B
[flake8]
|
|
ignore =
|
|
# 'toml' imported but unused
|
|
F401,
|
|
# closing bracket does not match visual indentation
|
|
E124,
|
|
# continuation line over-indented for hanging indent
|
|
E126,
|
|
# visually indented line with same indent as next logical line,
|
|
E129,
|
|
# line break before binary operator
|
|
W503,
|
|
# line break after binary operator
|
|
W504
|
|
|
|
disable-noqa
|
|
indent-size = 2
|
|
max-line-length = 80
|