-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
25 lines (18 loc) · 626 Bytes
/
.pylintrc
File metadata and controls
25 lines (18 loc) · 626 Bytes
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
[MASTER]
ignore=CVS,models.py,handlers.py,hook_models.py,hook_handlers.py,target_model.py
jobs=1
persistent=yes
[MESSAGES CONTROL]
disable=
missing-docstring, # not everything needs a docstring
fixme, # work in progress
bad-continuation, # clashes with black
too-few-public-methods, # triggers when inheriting
ungrouped-imports, # clashes with isort
duplicate-code, # broken, setup.py
wrong-import-order, # isort has precedence
[BASIC]
good-names=e,ex,f,fp,i,j,k,v,n,_
[FORMAT]
indent-string=' '
max-line-length=88