-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
31 lines (28 loc) · 944 Bytes
/
.pylintrc
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
[MASTER]
# Whitelisting black C extension
extension-pkg-allow-list=black.mode
[STRING]
check-quote-consistency=yes
[VARIABLES]
# Tells whether we should check for unused import in __init__ files.
init-import=no
[MESSAGES CONTROL]
disable=c-extension-no-member, # do not error on black.mode c extension
consider-merging-isinstance, # this rule is incompatible with mypy
fixme, # allow FIXME doc tags
line-too-long, # we use black for formatting
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-return-statements,
too-many-statements,