-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpylintrc
More file actions
33 lines (24 loc) · 636 Bytes
/
pylintrc
File metadata and controls
33 lines (24 loc) · 636 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
33
[MASTER]
ignore=tests
[MESSAGES CONTROL]
# missing-docstring can be removed after this issue is deployed https://github.com/PyCQA/pylint/issues/1164
disable=fixme,duplicate-code,missing-docstring,not-context-manager,too-many-arguments,too-many-positional-arguments,consider-using-f-string
[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=_
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