Skip to content

Commit

Permalink
updated whi9ch checks pylint should run
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jan 4, 2024
1 parent b28d977 commit 064c411
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,20 @@ 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=
disable=consider-using-dict-items, missing-module-docstring, unsubscriptable-object

# consider-using-dict-items "for x in foo:" is fine!

# missing-module-docstring expects a comment at import level which we don't do

# False positives for unsubscriptable-object. Mypy better at this class of issue
# See https://github.com/pylint-dev/pylint/issues/1498

# 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
# multiple time (only on the command line, not in the configuration file where
# it should appear only once). See also the "--disable" option for examples.
enable=c-extension-no-member
enable=


[REPORTS]
Expand Down Expand Up @@ -265,7 +272,6 @@ notes=FIXME,
XXX



[SIMILARITIES]

# Ignore comments when computing similarities.
Expand All @@ -291,7 +297,7 @@ max-spelling-suggestions=4
spelling-dict=

# List of comma separated words that should not be checked.
spelling-ignore-words=
spelling-ignore-words=ReservedAssignment,noqa,pragma

# A path to a file that contains private dictionary; one word per line.
spelling-private-dict-file=
Expand Down Expand Up @@ -379,8 +385,9 @@ init-import=no
# List of method names used to declare (i.e. assign) instance attributes.
defining-attr-methods=__init__,
__new__,
_new_run_clear,
_machine_clear,
__call__,
_hard_reset,
setUp

# List of member names, which should be excluded from the protected access
# warning.
Expand Down

0 comments on commit 064c411

Please sign in to comment.