| Index: pylintrc
|
| diff --git a/pylintrc b/pylintrc
|
| index 77b006391bf74e88d69ce5e98278544fa2807d18..831d0fe7080ad2fa9939e5d45b394512ab43aa41 100644
|
| --- a/pylintrc
|
| +++ b/pylintrc
|
| @@ -40,6 +40,7 @@ load-plugins=
|
| # I0010: Unable to consider inline option ''
|
| # I0011: Locally disabling WNNNN
|
| #
|
| +# R0401: Cyclic Import
|
| # R0801: Similar lines in N files
|
| # R0901: Too many ancestors (8/7)
|
| # R0902: Too many instance attributes (N/7)
|
| @@ -90,7 +91,7 @@ load-plugins=
|
| # unpacking-non-sequence
|
| # unused-import
|
| # useless-else-on-loop
|
| -disable=C0103,C0111,C0302,I0010,I0011,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0703,W1201,bad-continuation,anomalous-backslash-in-string,bad-context-manager,bad-indentation,bad-str-strip-call,bad-whitespace,cell-var-from-loop,deprecated-lambda,eval-used,function-redefined,import-error,locally-enabled,missing-final-newline,no-init,no-name-in-module,no-self-use,not-callable,old-style-class,protected-access,superfluous-parens,super-on-old-class,too-many-function-args,trailing-whitespace,unnecessary-semicolon,unpacking-non-sequence,unused-import,useless-else-on-loop
|
| +disable=C0103,C0111,C0302,I0010,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0703,W1201,bad-continuation,anomalous-backslash-in-string,bad-context-manager,bad-indentation,bad-str-strip-call,bad-whitespace,cell-var-from-loop,deprecated-lambda,eval-used,function-redefined,import-error,locally-enabled,missing-final-newline,no-init,no-name-in-module,no-self-use,not-callable,old-style-class,protected-access,superfluous-parens,super-on-old-class,too-many-function-args,trailing-whitespace,unnecessary-semicolon,unpacking-non-sequence,unused-import,useless-else-on-loop
|
|
|
|
|
| [REPORTS]
|
|
|