update pylint.rc with last version from w.c.s. (#51639)

This commit is contained in:
Benjamin Dauvergne 2021-04-01 09:41:00 +02:00
parent ebc5a91428
commit 931e5b2a61
1 changed files with 2 additions and 63 deletions

View File

@ -6,69 +6,8 @@ cache-size=500
load-plugins=pylint_django
[MESSAGES CONTROL]
# C0103 invalid-name
# C0114 missing-module-docstring
# C0115 missing-class-docstring
# C0116 missing-function-docstring
# C0302 too-many-lines
# C0325 superfluous-parens
# C0415 import-outside-toplevel
# C1801 len-as-condition
# E1101 no-member
# E1102 not-callable
# E1111 assignment-from-no-return
# E1121 too-many-function-args
# E1128 assignment-from-none
# E1134 not-a-mapping
# E1135 unsupported-membership-test
# E1136 unsubscriptable-object
# E1305 too-many-format-args
# R0201 no-self-use
# R0401 cyclic-import
# R0801 duplicate-code
# R0901 too-many-ancestors
# R0902 too-many-instance-attributes
# R0904 too-many-public-methods
# R0911 too-many-return-statements
# R0912 too-many-branches
# R0913 too-many-arguments
# R0914 too-many-locals
# R0915 too-many-statements
# R0916 too-many-boolean-expressions
# R1702 too-many-nested-blocks
# R1704 redefined-argument-from-local
# R1705 no-else-return
# R1706 consider-using-ternary
# R1708 stop-iteration-return
# R1710 inconsistent-return-statements
# R1717 consider-using-dict-comprehension
# R1718 consider-using-set-comprehension
# R1721 unnecessary-comprehension
# W0108 unnecessary-lambda
# W0122 exec-used
# W0123 eval-used
# W0201 attribute-defined-outside-init
# W0212 protected-access
# W0221 arguments-differ
# W0222 signature-differs
# W0223 abstract-method
# W0231 super-init-not-called
# W0233 non-parent-init-called
# W0402 deprecated-module
# W0403 relative-import
# W0511 fixme
# W0601 global-variable-undefined
# W0613 unused-argument
# W0621 redefined-outer-name
# W0622 redefined-builtin
# W0631 undefined-loop-variable
# W0641 possibly-unused-variable
# W0703 broad-except
# W0705 duplicate-except
# W0707 raise-missing-from
# W1113 keyword-arg-before-vararg
# W1510 subprocess-run-check
disable=C0103,C0114,C0115,C0116,C0302,C0325,C0415,C1801,E1101,E1102,E1111,E1121,E1128,E1134,E1135,E1136,E1305,R0201,R0401,R0801,R0901,R0902,R0904,R0911,R0912,R0913,R0914,R0915,R0916,R1702,R1704,R1705,R1706,R1708,R1710,R1717,R1718,R1721,W0108,W0122,W0123,W0201,W0212,W0221,W0222,W0223,W0231,W0233,W0402,W0403,W0511,W0601,W0613,W0621,W0622,W0631,W0641,W0703,W0705,W0707,W1113,W1510,bad-whitespace,bad-continuation
disable=abstract-method,arguments-differ,assignment-from-no-return,assignment-from-none,attribute-defined-outside-init,broad-except,consider-using-dict-comprehension,consider-using-set-comprehension,consider-using-ternary,cyclic-import,deprecated-module,duplicate-code,duplicate-except,eval-used,exec-used,fixme,global-variable-undefined,import-outside-toplevel,inconsistent-return-statements,invalid-name,keyword-arg-before-vararg,len-as-condition,missing-class-docstring,missing-function-docstring,missing-module-docstring,no-else-return,no-member,no-self-use,non-parent-init-called,not-a-mapping,not-callable,possibly-unused-variable,protected-access,raise-missing-from,redefined-argument-from-local,redefined-builtin,redefined-outer-name,signature-differs,stop-iteration-return,subprocess-run-check,super-init-not-called,superfluous-parens,too-many-ancestors,too-many-arguments,too-many-boolean-expressions,too-many-branches,too-many-function-args,too-many-instance-attributes,too-many-lines,too-many-locals,too-many-nested-blocks,too-many-public-methods,too-many-return-statements,too-many-statements,undefined-loop-variable,unnecessary-comprehension,unnecessary-lambda,unsubscriptable-object,unsupported-membership-test,unused-argument
[REPORTS]
output-format=parseable