-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.cfg
More file actions
16 lines (16 loc) · 845 Bytes
/
setup.cfg
File metadata and controls
16 lines (16 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[pylint]
max-line-length = 99
good-names = i,j,k,v,t,m,s,n,x,y,ax,ex,fp,id,tx,fn,pi,wf,db,Run,_
disable = R0902,R0903,R0904,R0912,R0913,R0914,R0916,W0603,W1203,C0413,E0401,R0917
# R0902: too many instance attributes (default: 8)
# R0903: class has too few public methods (default: 2)
# R0904: class has too many public methods (default: 20)
# R0912: function or method has too many logical branches (default: 12)
# R0913: function or method takes too many arguments (default: 5)
# R0914: function or method has too many local variables (default: 15)
# R0916: if-statement contains too many boolean expressions (default: 5)
# R0917: too-many-positional-arguments
# W0603: global statement used to update a global variable
# W1203: use lazy % formatting in logging functions
# C0413: requires imports at the top of the file
ignore = data,examples