-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
57 lines (46 loc) · 944 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[MAIN]
py-version=3.8
[BASIC]
argument-naming-style=camelCase
attr-naming-style=camelCase
variable-naming-style=camelCase
class-attribute-naming-style=camelCase
class-const-naming-style=UPPER_CASE
class-naming-style=PascalCase
const-naming-style=UPPER_CASE
function-naming-style=camelCase
method-naming-style=camelCase
module-naming-style=any
docstring-min-length=-1
good-names=i,
x,
y,
z,
j,
_,
e
no-docstring-rgx=^_
[DESIGN]
max-args=7
max-attributes=7
max-bool-expr=3
max-branches=12
max-locals=15
max-parents=3
max-public-methods=20
max-returns=6
max-statements=50
min-public-methods=2
[FORMAT]
expected-line-ending-format=LF
[SIMILARITIES]
min-similarity-lines=5
[STRING]
check-quote-consistency=yes
[TYPECHECK]
ignored-modules=numpy,carla,pygame,agents
disable=cyclic-import
[MESSAGES CONTROL]
disable=no-name-in-module,
import-error,
no-member