forked from SvenskaSpel/locust-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
17 lines (14 loc) · 799 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[FORMAT]
max-line-length=300
max-args=6
[BASIC]
# only require really big functions to have docstrings. and we should never have this long functions.
docstring-min-length=100
# allow single letter variable names
variable-rgx=[a-z0-9_]{1,30}$
attr-rgx=[a-z0-9_]{1,30}$
[MESSAGES CONTROL]
disable=logging-not-lazy,logging-fstring-interpolation,missing-docstring,wrong-import-position,wrong-import-order,too-few-public-methods,invalid-name,protected-access,logging-format-interpolation,dangerous-default-value,global-statement,bad-continuation,too-many-locals,too-many-arguments,too-many-instance-attributes,no-self-use,blacklisted-name,no-value-for-parameter,attribute-defined-outside-init,broad-except,bare-except,consider-using-with
[MASTER]
ignore=locustio,examples
extension-pkg-whitelist=lxml