-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pylintrc
54 lines (48 loc) · 1.17 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
[MASTER]
load-plugins=pylint_quotes
string-quote=double-avoid-escape
triple-quote=double
docstring-quote=double
[MESSAGES CONTROL]
disable=
abstract-method,
bad-continuation,
bad-whitespace, # Black deals with whitespace around operators and brackets
chained-comparison, # R1716: Simplify chained comparison between the operands
duplicate-code,
fixme,
invalid-name,
len-as-condition,
missing-docstring,
no-else-return,
no-else-raise,
no-self-use,
superfluous-parens,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-statements,
ungrouped-imports,
unused-argument,
wrong-import-order,
line-too-long,
no-else-continue,
no-else-break,
import-outside-toplevel,
unspecified-encoding
[FORMAT]
max-line-length=125
[REPORTS]
output-format=text
reports=no
score=no
[TYPECHECK]
ignored-classes=PurePath,responses
extension-pkg-whitelist=cassandra.cluster,cassandra.metadata,cassandra.query