Skip to content

Commit

Permalink
Disable all currently violated PyLint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Nov 2, 2021
1 parent 04dbdb8 commit b9ca478
Showing 1 changed file with 46 additions and 1 deletion.
47 changes: 46 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,52 @@ disable=raw-checker-failed,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead
use-symbolic-message-instead,
# FIXME: Everything below has been violated at the time of the
# FIXME: initial addition. All of these rules must be fixed and
# FIXME: removed/re-enabled over time.
arguments-differ,
attribute-defined-outside-init,
broad-except,
consider-using-dict-items,
consider-using-enumerate,
consider-using-f-string,
consider-using-ternary,
consider-using-with,
cyclic-import,
deprecated-method,
duplicate-code,
fixme,
global-variable-not-assigned,
invalid-name,
logging-format-interpolation,
logging-not-lazy,
missing-class-docstring,
missing-function-docstring,
no-else-raise,
no-self-use,
no-value-for-parameter,
protected-access,
raise-missing-from,
raising-format-tuple,
redefined-outer-name,
super-init-not-called,
superfluous-parens,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
unnecessary-pass,
unreachable,
unused-argument,
useless-return,
useless-super-delegation,
wrong-import-order,

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down

0 comments on commit b9ca478

Please sign in to comment.