-
Notifications
You must be signed in to change notification settings - Fork 45
/
pylintrc
59 lines (39 loc) · 1.33 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
# Taken from https://github.com/raiden-network/raiden/blob/4cf30f351455ca09c4800a402a5da0ed7042fa71/.pylint.rc
# Also under the MIT license.
[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]
[BASIC]
bad-names=foo,bar,baz,toto,tutu,tata
good-names=i,j,k,_
[LOGGING]
logging-modules=logging,structlog
[MESSAGES CONTROL]
disable=all
enable=too-many-format-args,bad-except-order,redefined-builtin,unused-variable,no-self-use,invalid-docstring-quote,import-self,gevent-joinall,useless-object-inheritance,unused-argument,expression-not-assigned,pointless-statement,unused-import,inconsistent-return-statements,reimported,too-many-instance-attributes
[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=