-
Notifications
You must be signed in to change notification settings - Fork 1
/
pylintrc
84 lines (64 loc) · 1.65 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
77
78
79
80
81
82
83
84
[MASTER]
jobs=4
persistent=yes
suggestion-mode=yes
unsafe-load-any-extension=no
load-plugins=tools.pylint.gevent_checker,tools.pylint.assert_checker,tools.pylint.del_method_checker
# Blacklist files or directories (basenames, not paths)
ignore=
# blacklist files or directories by regex (basenames, not paths)
ignore-patterns=
[EXCEPTIONS]
overgeneral-exceptions=Exception,RaidenUnrecoverableError
[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=
assert-message,
bad-except-order,
del-method-used,
exception-in-del,
expression-not-assigned,
gevent-joinall-raise-error,
gevent-disable-wait,
gevent-group-join,
gevent-input-forbidden,
gevent-sys-stdfds-forbidden,
import-self,
inconsistent-return-statements,
no-member,
no-self-use,
no-value-for-parameter,
pointless-statement,
redefined-builtin,
reimported,
too-many-format-args,
too-many-function-args,
unexpected-keyword-arg,
unused-argument,
unused-import,
unused-variable,
useless-object-inheritance,
[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=