2018-03-27 20:30:46 +02:00
|
|
|
# See https://www.pylint.org/
|
|
|
|
[BASIC]
|
|
|
|
# Permit 2 character & long argument names, like db
|
|
|
|
argument-rgx=[a-z_][a-z0-9_]{1,50}$
|
|
|
|
# Long attribute names
|
|
|
|
attr-rgx=[a-z_][a-z0-9_]{2,50}$
|
|
|
|
# Long function names
|
|
|
|
function-rgx=[a-z_][a-z0-9_]{2,50}$
|
|
|
|
# Long method names
|
|
|
|
method-rgx=[a-z_][a-z0-9_]{2,50}$
|
|
|
|
# Permit 2 character & long variable names, like sb
|
|
|
|
variable-rgx=[a-z_][a-z0-9_]{1,50}$
|
|
|
|
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
# C0301 - line-too-long - some of the type annotations are longer then 100 columns
|
|
|
|
# C0330 - bad-continuation - ignore conflicts produced by yapf formatting
|
|
|
|
# E0401 - import-error - ignore imports that fail to load
|
|
|
|
# E1101 - no-member - ignore maybe no member warnings
|
|
|
|
# I0011 - locally-disabled - ignore warnings about disable pylint checks
|
|
|
|
# R0204 - redefined-variable-type
|
|
|
|
# R0903 - too-few-public-methods - pylint does not always know best
|
2018-12-20 17:47:20 +01:00
|
|
|
# R1705 - no-else-return - sometimes an unnecessary else helps readability
|
2018-03-27 20:30:46 +02:00
|
|
|
# W0511 - fixme - ignore TODOs in comments
|
|
|
|
# W0611 - unused-import - typing module is needed for mypy
|
|
|
|
|
2018-12-20 17:47:20 +01:00
|
|
|
disable=bad-continuation,fixme,import-error,line-too-long,no-member,locally-disabled,no-else-return,redefined-variable-type,too-few-public-methods,unused-import
|
2018-09-06 20:25:12 +02:00
|
|
|
|
|
|
|
[IMPORTS]
|
2018-12-13 18:56:55 +01:00
|
|
|
known-third-party=boto3,botocore,psutil,yaml,xmlrunner
|