-
Notifications
You must be signed in to change notification settings - Fork 6
/
pylintrc
34 lines (31 loc) · 903 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
32
33
34
[MASTER]
disable=blacklisted-name,
duplicate-code,
fixme,
import-outside-toplevel,
invalid-name,
logging-fstring-interpolation,
missing-docstring,
protected-access,
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,
unused-argument,
wrong-spelling-in-comment,
wrong-spelling-in-docstring
# Minimum supported python version
py-version=3.8
[TYPECHECK]
contextmanager-decorators=contextlib.contextmanager,
trio_util._exceptions._async_friendly_contextmanager
[REPORTS]
score=no