forked from bmw-software-engineering/lobster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylint3.cfg
40 lines (37 loc) · 780 Bytes
/
pylint3.cfg
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
[MASTER]
persistent=no
disable=
bad-indentation,
missing-docstring,
fixme,
locally-disabled,
similarities,
too-many-ancestors,
too-many-instance-attributes,
too-few-public-methods,
too-many-public-methods,
too-many-return-statements,
too-many-branches,
too-many-arguments,
too-many-locals,
too-many-statements,
too-many-boolean-expressions,
too-many-nested-blocks,
too-many-lines,
len-as-condition,
no-else-return,
inconsistent-return-statements,
wildcard-import,
unused-wildcard-import,
no-else-raise,
no-else-break,
no-else-continue,
consider-using-f-string
[REPORTS]
output-format=text
reports=yes
[BASIC]
class-rgx=([A-Z]+|[A-Z][a-z]+)(_[A-Z]+|[A-Z][a-z])*
good-names=i,j,k,c,f,fd,zf,n,ap,rv,sm,mh,wp,ok,db,nc,cc,nt,ct
[FORMAT]
max-line-length=88