|
|
@ -9,11 +9,11 @@ |
|
|
|
# run arbitrary code |
|
|
|
extension-pkg-whitelist=hid |
|
|
|
|
|
|
|
# Add files or directories to the blacklist. They should be base names, not |
|
|
|
# Add files or directories to the ignore-list. They should be base names, not |
|
|
|
# paths. |
|
|
|
ignore=CVS |
|
|
|
|
|
|
|
# Add files or directories matching the regex patterns to the blacklist. The |
|
|
|
# Add files or directories matching the regex patterns to the ignore-list. The |
|
|
|
# regex matches against base names, not paths. |
|
|
|
ignore-patterns= |
|
|
|
|
|
|
@ -26,7 +26,7 @@ jobs=1 |
|
|
|
|
|
|
|
# List of plugins (as comma separated values of python modules names) to load, |
|
|
|
# usually to register additional checkers. |
|
|
|
load-plugins= |
|
|
|
load-plugins=pylint.extensions.no_self_use |
|
|
|
|
|
|
|
# Pickle collected data for later comparisons. |
|
|
|
persistent=yes |
|
|
@ -54,8 +54,8 @@ confidence= |
|
|
|
# --enable=similarities". If you want to run only the classes checker, but have |
|
|
|
# no Warning level messages displayed, use"--disable=all --enable=classes |
|
|
|
# --disable=W" |
|
|
|
# disable=import-error,print-statement,parameter-unpacking,unpacking-in-except,old-raise-syntax,backtick,long-suffix,old-ne-operator,old-octal-literal,import-star-module-level,raw-checker-failed,bad-inline-option,locally-disabled,locally-enabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,apply-builtin,basestring-builtin,buffer-builtin,cmp-builtin,coerce-builtin,execfile-builtin,file-builtin,long-builtin,raw_input-builtin,reduce-builtin,standarderror-builtin,unicode-builtin,xrange-builtin,coerce-method,delslice-method,getslice-method,setslice-method,no-absolute-import,old-division,dict-iter-method,dict-view-method,next-method-called,metaclass-assignment,indexing-exception,raising-string,reload-builtin,oct-method,hex-method,nonzero-method,cmp-method,input-builtin,round-builtin,intern-builtin,unichr-builtin,map-builtin-not-iterating,zip-builtin-not-iterating,range-builtin-not-iterating,filter-builtin-not-iterating,using-cmp-argument,eq-without-hash,div-method,idiv-method,rdiv-method,exception-message-attribute,invalid-str-codec,sys-max-int,bad-python3-import,deprecated-string-function,deprecated-str-translate-call |
|
|
|
disable=print-statement,parameter-unpacking,unpacking-in-except,old-raise-syntax,backtick,long-suffix,old-ne-operator,old-octal-literal,import-star-module-level,raw-checker-failed,bad-inline-option,locally-disabled,locally-enabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,apply-builtin,basestring-builtin,buffer-builtin,cmp-builtin,coerce-builtin,execfile-builtin,file-builtin,long-builtin,raw_input-builtin,reduce-builtin,standarderror-builtin,unicode-builtin,xrange-builtin,coerce-method,delslice-method,getslice-method,setslice-method,no-absolute-import,old-division,dict-iter-method,dict-view-method,next-method-called,metaclass-assignment,indexing-exception,raising-string,reload-builtin,oct-method,hex-method,nonzero-method,cmp-method,input-builtin,round-builtin,intern-builtin,unichr-builtin,map-builtin-not-iterating,zip-builtin-not-iterating,range-builtin-not-iterating,filter-builtin-not-iterating,using-cmp-argument,eq-without-hash,div-method,idiv-method,rdiv-method,exception-message-attribute,invalid-str-codec,sys-max-int,bad-python3-import,deprecated-string-function,deprecated-str-translate-call,import-error,attribute-defined-outside-init,bad-continuation,invalid-name,import-error,import-outside-toplevel,too-many-branches,too-many-statements,too-many-public-methods |
|
|
|
# disable=import-error,raw-checker-failed,bad-inline-option,locally-disabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,deprecated-str-translate-call |
|
|
|
disable=raw-checker-failed,bad-inline-option,locally-disabled,file-ignored,suppressed-message,useless-suppression,deprecated-pragma,import-error,pointless-string-statement,unspecified-encoding,import-outside-toplevel,too-many-branches,too-many-statements,too-many-public-methods |
|
|
|
|
|
|
|
# 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 |
|
|
@ -223,15 +223,7 @@ indent-string=' ' |
|
|
|
max-line-length=100 |
|
|
|
|
|
|
|
# Maximum number of lines in a module |
|
|
|
# |
|
|
|
# XXX: Reduce this number once Issue 296 is resolved. |
|
|
|
max-module-lines=1050 |
|
|
|
|
|
|
|
# List of optional constructs for which whitespace checking is disabled. `dict- |
|
|
|
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}. |
|
|
|
# `trailing-comma` allows a space between comma and closing bracket: (a, ). |
|
|
|
# `empty-line` allows space-only lines. |
|
|
|
no-space-check=trailing-comma,dict-separator |
|
|
|
max-module-lines=1000 |
|
|
|
|
|
|
|
# Allow the body of a class to be on the same line as the declaration if body |
|
|
|
# contains single statement. |
|
|
@ -251,7 +243,7 @@ ignore-comments=yes |
|
|
|
ignore-docstrings=yes |
|
|
|
|
|
|
|
# Ignore imports when computing similarities. |
|
|
|
ignore-imports=no |
|
|
|
ignore-imports=yes |
|
|
|
|
|
|
|
# Minimum lines number of a similarity. |
|
|
|
min-similarity-lines=12 |
|
|
@ -259,38 +251,22 @@ min-similarity-lines=12 |
|
|
|
|
|
|
|
[BASIC] |
|
|
|
|
|
|
|
# Naming hint for argument names |
|
|
|
argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
|
# Regular expression matching correct argument names |
|
|
|
argument-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
|
# Naming hint for attribute names |
|
|
|
attr-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
|
# Regular expression matching correct attribute names |
|
|
|
attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
|
# Bad variable names which should always be refused, separated by a comma |
|
|
|
bad-names=foo,bar,baz,toto,tutu,tata |
|
|
|
|
|
|
|
# Naming hint for class attribute names |
|
|
|
class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ |
|
|
|
|
|
|
|
# Regular expression matching correct class attribute names |
|
|
|
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ |
|
|
|
|
|
|
|
# Naming hint for class names |
|
|
|
# class-name-hint=[A-Z_][a-zA-Z0-9]+$ |
|
|
|
class-name-hint=[A-Z_][a-zA-Z0-9_]+$ |
|
|
|
|
|
|
|
# Regular expression matching correct class names |
|
|
|
# class-rgx=[A-Z_][a-zA-Z0-9]+$ |
|
|
|
class-rgx=[A-Z_][a-zA-Z0-9_]+$ |
|
|
|
|
|
|
|
# Naming hint for constant names |
|
|
|
const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$ |
|
|
|
|
|
|
|
# Regular expression matching correct constant names |
|
|
|
const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ |
|
|
|
|
|
|
@ -298,9 +274,6 @@ const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ |
|
|
|
# ones are exempt. |
|
|
|
docstring-min-length=-1 |
|
|
|
|
|
|
|
# Naming hint for function names |
|
|
|
function-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
|
# Regular expression matching correct function names |
|
|
|
function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
@ -311,21 +284,12 @@ good-names=r,g,b,w,i,j,k,n,x,y,z,ex,ok,Run,_ |
|
|
|
# Include a hint for the correct naming format with invalid-name |
|
|
|
include-naming-hint=no |
|
|
|
|
|
|
|
# Naming hint for inline iteration names |
|
|
|
inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$ |
|
|
|
|
|
|
|
# Regular expression matching correct inline iteration names |
|
|
|
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ |
|
|
|
|
|
|
|
# Naming hint for method names |
|
|
|
method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
|
# Regular expression matching correct method names |
|
|
|
method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
|
# Naming hint for module names |
|
|
|
module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ |
|
|
|
|
|
|
|
# Regular expression matching correct module names |
|
|
|
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ |
|
|
|
|
|
|
@ -341,9 +305,6 @@ no-docstring-rgx=^_ |
|
|
|
# to this list to register other decorators that produce valid properties. |
|
|
|
property-classes=abc.abstractproperty |
|
|
|
|
|
|
|
# Naming hint for variable names |
|
|
|
variable-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
|
# Regular expression matching correct variable names |
|
|
|
variable-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ |
|
|
|
|
|
|
@ -435,4 +396,4 @@ min-public-methods=1 |
|
|
|
|
|
|
|
# Exceptions that will emit a warning when being caught. Defaults to |
|
|
|
# "Exception" |
|
|
|
overgeneral-exceptions=Exception |
|
|
|
overgeneral-exceptions=builtins.Exception |