-
Notifications
You must be signed in to change notification settings - Fork 15
/
pylintrc
76 lines (56 loc) · 1.34 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[MASTER]
jobs=4
persistent=yes
suggestion-mode=yes
unsafe-load-any-extension=no
# Blacklist files or directories (basenames, not paths)
ignore=
# blacklist files or directories by regex (basenames, not paths)
ignore-patterns=
[EXCEPTIONS]
overgeneral-exceptions=Exception
[BASIC]
bad-names=foo,bar,baz,toto,tutu,tata
good-names=i,j,k,_,log
[LOGGING]
logging-modules=logging,structlog
[MESSAGES CONTROL]
disable=all
enable=
no-value-for-parameter,
too-many-format-args,
no-member,
bad-except-order,
redefined-builtin,
unused-variable,
no-self-use,
import-self,
gevent-joinall,
useless-object-inheritance,
unused-argument,
unexpected-keyword-arg,
expression-not-assigned,
pointless-statement,
unused-import,
inconsistent-return-statements,
reimported,
too-many-function-args
[REPORTS]
reports=no
score=no
[FORMAT]
expected-line-ending-format=LF
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
max-line-length=100
max-module-lines=1000
no-space-check=trailing-comma
[VARIABLES]
callbacks=cb_,_cb
dummy-variables-rgx=_
ignored-argument-names=_.*
[TYPECHECK]
contextmanager-decorators=contextlib.contextmanager
# List of class names for which member attributes should not be checked
ignored-classes=
# List of module names for which member attributes should not be checked
ignored-modules=