-
Notifications
You must be signed in to change notification settings - Fork 388
/
.pylintrc
64 lines (42 loc) · 1.27 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[MASTER]
# Specify a configuration file name.
rcfile=.pylintrc
# Add additional code-checking plugins.
load-plugins=
[MESSAGES CONTROL]
# Enable or disable messages. Options: 'disable', 'enable', 'disable-msg', 'enable-msg'.
disable=
[REPORTS]
# Set the output format. Options: 'text', 'parseable', 'colorized', 'json'.
output-format=text
[REPORTS/MISCELLANEOUS]
# Set the maximum number of parents for a class (see R0901).
max-parents=
[FORMAT]
# Set the maximum number of characters on a single line.
max-line-length=80
[TYPECHECK]
# Enable or disable type checking.
disable=
invalid-name,
too-many-locals,
too-many-arguments,
too-many-statements,
unused-import,
no-name-in-module,
import-outside-toplevel
[LOGGING]
# Set the logging level. Options: 'CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG', 'NOTSET'.
logging-level=WARNING
[DESIGN]
# Set the maximum number of attributes for a class (see R0902).
max-attributes=
[IMPORTS]
# Set the maximum number of import statements allowed (see C0411).
max-imports=
[UNITTEST]
# Enable or disable the use of assertions in unittests.
disable=no-self-use, invalid-name
[FORMAT]
# Set the expected format for docstrings. Options: 'google', 'numpy', 'restructuredtext', 'plaintext'.
docstring-format=google