Skip to content

Commit

Permalink
Ignore spurious pylint warnings
Browse files Browse the repository at this point in the history
pylint complains about several stylistic issues with our code that are
always low priority (e.g., import order). This commit ignores some of
the most annoying warnings, so built-in linters (in emacs, etc.) are
more useful for catching real issues.
  • Loading branch information
huddlej committed Jul 15, 2021
1 parent 43e6ded commit bb81de2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,12 @@ disable=print-statement,
missing-docstring,
bad-whitespace,
line-too-long,
invalid-name
invalid-name,
wrong-import-order,
multiple-imports,
no-else-return,
unscriptable-object,
relative-beyond-top-level

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

Please sign in to comment.