-
Notifications
You must be signed in to change notification settings - Fork 14
/
.pylintrc
21 lines (17 loc) · 966 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[MESSAGES CONTROL]
# 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
# multiple time.
#enable=
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
#disable=
# mrack is starting to use f style strings string-interpolation and have some
# specific classes which are adding functionality to ones they inherit from
disable=fixme,too-many-instance-attributes,attribute-defined-outside-init,unnecessary-pass,super-init-not-called,too-many-arguments,too-few-public-methods,logging-fstring-interpolation,import-error
# Minimum lines number of a similarity.
min-similarity-lines=11
# Maximum number of locals for function / method body
max-locals=25