mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Pylint 2.6.0 added a new rule to encourage chaining exceptions. Until someone has time to address the new warnings, disable the rule to avoid breaking the build.
56 lines
1.1 KiB
INI
56 lines
1.1 KiB
INI
[MASTER]
|
|
|
|
ignore=
|
|
build,
|
|
docs,
|
|
examples,
|
|
scripts,
|
|
_compat.py,
|
|
_gaiohttp.py,
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
disable=
|
|
attribute-defined-outside-init,
|
|
bad-continuation,
|
|
bad-mcs-classmethod-argument,
|
|
bare-except,
|
|
broad-except,
|
|
duplicate-bases,
|
|
duplicate-code,
|
|
eval-used,
|
|
fixme,
|
|
import-error,
|
|
import-outside-toplevel,
|
|
import-self,
|
|
inconsistent-return-statements,
|
|
invalid-name,
|
|
misplaced-comparison-constant,
|
|
missing-docstring,
|
|
no-else-return,
|
|
no-member,
|
|
no-self-argument,
|
|
no-self-use,
|
|
no-staticmethod-decorator,
|
|
not-callable,
|
|
protected-access,
|
|
raise-missing-from,
|
|
redefined-outer-name,
|
|
too-few-public-methods,
|
|
too-many-arguments,
|
|
too-many-branches,
|
|
too-many-instance-attributes,
|
|
too-many-lines,
|
|
too-many-locals,
|
|
too-many-nested-blocks,
|
|
too-many-public-methods,
|
|
too-many-statements,
|
|
wrong-import-position,
|
|
wrong-import-order,
|
|
ungrouped-imports,
|
|
unused-argument,
|
|
useless-object-inheritance,
|
|
useless-import-alias,
|
|
comparison-with-callable,
|
|
try-except-raise,
|