forked from canonical/ua-reviewkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
54 lines (49 loc) · 1.15 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
[MAIN]
jobs=0
ignore=.git
# List of plugins (as comma separated values of python module names) to load,
# usually to register additional checkers.
load-plugins=pylint.extensions.no_self_use
# When enabled, pylint would attempt to guess common misconfiguration and emit
# user-friendly hints instead of false-positive error messages.
suggestion-mode=yes
[FORMAT]
max-line-length=79
[REPORTS]
#reports=yes
score=yes
[MESSAGES CONTROL]
disable=
abstract-method,
arguments-differ,
attribute-defined-outside-init,
broad-except,
broad-exception-raised,
consider-using-f-string,
duplicate-code,
fixme,
inconsistent-return-statements,
invalid-name,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-member,
no-self-use,
no-value-for-parameter,
pointless-statement,
protected-access,
super-init-not-called,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-statements,
unnecessary-lambda,
unspecified-encoding,
unused-private-member,
useless-object-inheritance,