-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpylintrc
More file actions
32 lines (24 loc) · 643 Bytes
/
pylintrc
File metadata and controls
32 lines (24 loc) · 643 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
26
27
28
29
30
31
32
[MASTER]
ignore=
[MESSAGES CONTROL]
# missing-docstring only for now, remove after this issue is deployed https://github.com/PyCQA/pylint/issues/1164
disable=missing-docstring,unidiomatic-typecheck,attribute-defined-outside-init,protected-access,no-member,duplicate-code,no-self-use
[REPORTS]
output-format=colorized
[VARIABLES]
init-import=no
dummy-variables-rgx=_|dummy
[TYPECHECK]
ignore-mixin-members=yes
[BASIC]
no-docstring-rgx=_.*
docstring-min-length=3
good-names=_,C,Q,R,V,on,to
bad-names=foo,bar,baz,foobar
[DESIGN]
min-public-methods=1
max-public-methods=20
[FORMAT]
max-line-length=120
[MISCELLANEOUS]
notes=FIXME,XXX,TODO