Skip to content

Commit

Permalink
Add invalid-name to pylint disable list
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Oct 29, 2024
1 parent ae13097 commit c1f4f19
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,22 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W".
disable=line-too-long,
disable=consider-using-f-string,
duplicate-code,
invalid-name,
line-too-long,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-positional-arguments,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
too-many-positional-arguments,
useless-object-inheritance,
unspecified-encoding,
consider-using-f-string
unspecified-encoding

# 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 c1f4f19

Please sign in to comment.