summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorAlexander Neben <alexander.neben@mongodb.com>2023-01-25 04:04:01 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-01-25 04:39:43 +0000
commit4017f1973070f9f0065f2e29353b7b6dc8991c1e (patch)
treeb13bd16fba744e5f706120935ff9c150ab4ebb58 /.pylintrc
parentd798eacdd11503eca257a1ab0d6d4e0d5b38f467 (diff)
downloadmongo-4017f1973070f9f0065f2e29353b7b6dc8991c1e.tar.gz
SERVER-69148 Added looser python linting back to mongo pretty printers
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc47
1 files changed, 46 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 524963aa2c9..9e5c25347ec 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -31,7 +31,52 @@ variable-rgx=[a-z_][a-z0-9_]{1,50}$
# R0801 - duplicate-code - See PM-1380
# E0611 - no-name-in-module
-disable=bad-continuation,consider-using-sys-exit,deprecated-method,deprecated-module,duplicate-code,exec-used,fixme,import-error,import-outside-toplevel,line-too-long,locally-disabled,missing-class-docstring,missing-docstring,missing-docstring,missing-function-docstring,missing-module-docstring,no-else-break,no-else-continue,no-else-raise,no-else-return,no-member,no-name-in-module,no-self-use,raise-missing-from,redefined-variable-type,super-with-arguments,too-few-public-methods,too-many-arguments,too-many-branches,too-many-function-args,too-many-instance-attributes,too-many-lines,too-many-locals,too-many-public-methods,too-many-return-statements,too-many-statements,unnecessary-comprehension,unnecessary-pass,unused-import,useless-object-inheritance
+disable=
+ bad-continuation,
+ bare-except,
+ broad-except,
+ consider-using-sys-exit,
+ deprecated-method,
+ deprecated-module,
+ duplicate-code,
+ exec-used,
+ fixme,
+ import-error,
+ import-outside-toplevel,
+ line-too-long,
+ locally-disabled,
+ missing-class-docstring,
+ missing-docstring,
+ missing-function-docstring,
+ missing-module-docstring,
+ no-else-break,
+ no-else-continue,
+ no-else-raise,
+ no-else-return,
+ no-member,
+ no-name-in-module,
+ no-self-use,
+ raise-missing-from,
+ redefined-variable-type,
+ subprocess-run-check,
+ super-with-arguments,
+ too-few-public-methods,
+ too-many-arguments,
+ too-many-branches,
+ too-many-function-args,
+ too-many-instance-attributes,
+ too-many-lines,
+ too-many-locals,
+ too-many-public-methods,
+ too-many-return-statements,
+ too-many-statements,
+ unidiomatic-typecheck,
+ unnecessary-comprehension,
+ unnecessary-pass,
+ unused-import,
+ unused-argument,
+ useless-object-inheritance,
+ wrong-import-order
enable=useless-suppression
[IMPORTS]