forked from dictation-toolbox/dragonfly
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pylintrc
31 lines (21 loc) · 951 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[MASTER]
# Add files or directories matching the regex patterns to the blacklist. The
# regex matches against base names, not paths.
ignore-patterns=_test_*.py
# Use multiple processes to speed up Pylint.
jobs=4
[MESSAGES CONTROL]
# Disable unwanted warnings with the given id(s) using a comma-separated
# list.
disable=invalid-name,bare-except,broad-except,bad-whitespace,unused-import,multiple-statements,missing-docstring,empty-docstring,useless-object-inheritance,no-else-return,len-as-condition
[DESIGN]
# Maximum number of arguments for function / method
max-args=7
# Minimum number of public methods for a class (see R0903).
min-public-methods=0
# Maximum number of public methods for a class (see R0904).
max-public-methods=20
[CLASSES]
# List of method names used to declare (i.e. assign) instance attributes.
# Action classes define some instance attributes in initialize().
defining-attr-methods=__init__,__new__,setUp,initialize