Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

25 lines
579 B
INI

[MASTER]
disable=
fixme,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
# We previously ignored all these non-error lints.
#
# TODO(bbannier): audit this list and fix lints where possible.
broad-exception-caught,
cyclic-import,
duplicate-code,
method-rgx=([a-z_][a-z0-9_]{2,64}$)|(assert[A-Z][a-zA-Z0-9]+$)