forked from alisw/alibuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
48 lines (44 loc) · 1.08 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
[MAIN]
ignore=.git,.tox
[FORMAT]
indent-string=' '
max-line-length=80
[BASIC]
function-naming-style=camelCase
argument-naming-style=camelCase
variable-naming-style=camelCase
[DESIGN]
max-attributes=15
[MESSAGES CONTROL]
disable=attribute-defined-outside-init,
bad-indentation,
bare-except,
broad-except,
consider-using-f-string,
fixme,
import-outside-toplevel,
invalid-envvar-default,
invalid-name,
line-too-long,
missing-docstring,
multiple-imports,
multiple-statements,
no-else-break,
no-else-return,
protected-access,
redefined-builtin,
redefined-outer-name,
redundant-u-string-prefix,
super-init-not-called,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-branches,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-return-statements,
too-many-statements,
ungrouped-imports,
unused-argument,
wrong-import-order,