|
26 | 26 |
|
27 | 27 | # List of plugins (as comma separated values of python modules names) to load,
|
28 | 28 | # usually to register additional checkers.
|
29 |
| -load-plugins= |
| 29 | +load-plugins=pylint.extensions.no_self_use |
30 | 30 |
|
31 | 31 | # Pickle collected data for later comparisons.
|
32 | 32 | persistent=yes
|
@@ -54,6 +54,7 @@ confidence=
|
54 | 54 | # --enable=similarities". If you want to run only the classes checker, but have
|
55 | 55 | # no Warning level messages displayed, use"--disable=all --enable=classes
|
56 | 56 | # --disable=W"
|
| 57 | +# disable=import-error,raw-checker-failed,bad-inline-option,locally-disabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,deprecated-str-translate-call |
57 | 58 | disable=raw-checker-failed,bad-inline-option,locally-disabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,import-error,pointless-string-statement,unspecified-encoding
|
58 | 59 |
|
59 | 60 | # Enable the message, report, category or checker with the given id(s). You can
|
@@ -280,6 +281,9 @@ function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
|
280 | 281 | # good-names=i,j,k,ex,Run,_
|
281 | 282 | good-names=r,g,b,w,i,j,k,n,x,y,z,ex,ok,Run,_
|
282 | 283 |
|
| 284 | +# Include a hint for the correct naming format with invalid-name |
| 285 | +include-naming-hint=no |
| 286 | + |
283 | 287 | # Regular expression matching correct inline iteration names
|
284 | 288 | inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
|
285 | 289 |
|
|
0 commit comments