forked from Aiven-Open/karapace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
42 lines (37 loc) · 755 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
32
33
34
35
36
37
38
39
40
41
42
[MASTER]
jobs=4
init-hook='import sys; sys.path.append(".")'
[MESSAGES CONTROL]
enable=
useless-suppression,
disable=
duplicate-code,
fixme,
import-outside-toplevel,
invalid-name,
missing-docstring,
too-few-public-methods,
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,
wrong-import-order,
import-error,
consider-using-f-string,
use-implicit-booleaness-not-comparison,
unspecified-encoding,
no-name-in-module,
use-list-literal,
use-dict-literal,
no-value-for-parameter,
relative-beyond-top-level,
[FORMAT]
max-line-length=125
[REPORTS]
output-format=text
reports=no
score=no