mirror of
https://github.com/dgelessus/python-rsrcfork.git
synced 2025-01-13 12:31:32 +00:00
Reformat setup.cfg flake8 ignore option to make current flake8 happy
This commit is contained in:
parent
0624d4eae9
commit
ff9377dc8d
27
setup.cfg
27
setup.cfg
@ -67,15 +67,24 @@ extend-exclude =
|
||||
# The following issues are ignored because they do not match our code style:
|
||||
ignore =
|
||||
# These E1 checks report many false positives for code that is (consistently) indented with tabs alone.
|
||||
E101, # indentation contains mixed spaces and tabs
|
||||
E117, # over-indented
|
||||
E126, # continuation line over-indented for hanging indent
|
||||
E226, # missing whitespace around arithmetic operator
|
||||
E261, # at least two spaces before inline comment
|
||||
E501, # line too long
|
||||
W191, # indentation contains tabs
|
||||
W293, # blank line contains whitespace
|
||||
W503, # line break before binary operator
|
||||
# indentation contains mixed spaces and tabs
|
||||
E101,
|
||||
# over-indented
|
||||
E117,
|
||||
# continuation line over-indented for hanging indent
|
||||
E126,
|
||||
# missing whitespace around arithmetic operator
|
||||
E226,
|
||||
# at least two spaces before inline comment
|
||||
E261,
|
||||
# line too long
|
||||
E501,
|
||||
# indentation contains tabs
|
||||
W191,
|
||||
# blank line contains whitespace
|
||||
W293,
|
||||
# line break before binary operator
|
||||
W503,
|
||||
|
||||
[mypy]
|
||||
files=src/**/*.py
|
||||
|
Loading…
x
Reference in New Issue
Block a user