From bb81de2d0e98db1825c59917cc3519d142b3561d Mon Sep 17 00:00:00 2001 From: John Huddleston Date: Tue, 6 Jul 2021 12:14:36 -0700 Subject: [PATCH] Ignore spurious pylint warnings 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. --- .pylintrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index b5f93e79d..8e8e70392 100644 --- a/.pylintrc +++ b/.pylintrc @@ -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