4328169274
We've had many checks disabled - these are the ones we actually lose: L104 Docstrings must use Napoleon, not reStructuredText fields. L205 __init__.py is not allowed to contain function or class definitions. L206 Implicit relative imports are not allowed. L208 Pokémon exception handling is always a mistake. If the intent is really to catch and ignore exceptions, explicitly name which exception types to silence. L209 return, del, raise, assert, print (in python 2, without print_function) yield, and yield from are statements, not functions, and as such, do not require parentheses. L210 Instead of intentionally relying on the side effects of map, filter, or a comprehension, write an explicit for loop. L211 Using map or filter with a lambda as the first argument is always better written as list comprehension or generator expression. An expression is more readable and extensible, and less importantly, doesn't incur as much function call overhead. L212 Using @staticmethod is always wrong. L301 Files must end with a trailing newline. L303 noqa is ignored, and as such, # noqa comments should be deleted to reduce pointless noise. However, most of those are also checked by pylint (and the rest I don't really care about), and ebb-lint increases flake8's runtime a lot (45s -> almost 2min).
21 lines
310 B
Plaintext
21 lines
310 B
Plaintext
flake8
|
|
flake8-copyright
|
|
flake8-debugger
|
|
flake8-deprecated
|
|
flake8-docstrings
|
|
flake8-future-import
|
|
flake8-mock
|
|
flake8-pep3101
|
|
flake8-putty
|
|
flake8-string-format
|
|
flake8-tidy-imports
|
|
flake8-tuple
|
|
hacking
|
|
pep8-naming
|
|
pydocstyle
|
|
pyflakes
|
|
|
|
pep8==1.7.0
|
|
|
|
#@ comment: pep257 still needed by flake8-docstrings but ignored
|