forked from claws/aioprometheus
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
55 lines (37 loc) · 1.21 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
[MASTER]
# Use multiple processes to speed up Pylint.
jobs=4
# Pickle collected data for later comparisons.
persistent=yes
# When enabled, pylint would attempt to guess common misconfiguration and emit
# user-friendly hints instead of false-positive error messages.
suggestion-mode=yes
[MESSAGES CONTROL]
disable=invalid-name,
broad-except,
broad-exception-raised,
duplicate-code,
logging-fstring-interpolation,
missing-class-docstring,
missing-module-docstring,
missing-function-docstring,
too-many-instance-attributes,
too-many-arguments,
too-few-public-methods,
[REPORTS]
# Set the output format. Available formats are text, parseable, colorized, json
# and msvs (visual studio). You can also give a reporter class, e.g.
# mypackage.mymodule.MyReporterClass.
output-format=text
# Tells whether to display a full report or only the messages.
reports=no
# Activate the evaluation score.
score=yes
[LOGGING]
logging-format-style=new
# Logging modules to check that the string format arguments are in logging
# function parameter format.
logging-modules=logging
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=160