forked from nengo/nengo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
60 lines (47 loc) · 1.25 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
[MASTER]
ignore = _vendor, compat.py
[MESSAGES CONTROL]
disable = all,
broad-except,
import-error,
reimported,
enable = anomalous-backslash-in-string,
assert-on-tuple,
attribute-defined-outside-init
bad-except-order,
bad-mcs-classmethod-argument,
bad-super-call,
bad-whitespace,
bare-except,
cell-var-from-loop,
confusing-with-statement,
consider-using-enumerate,
cyclic-import,
dangerous-default-value,
deprecated-method,
function-redefined,
line-too-long,
misplaced-comparison-constant,
no-value-for-parameter,
notimplemented-raised,
pointless-string-statement,
repeated-keyword,
signature-differs,
singleton-comparison,
super-init-not-called,
too-many-function-args,
undefined-variable,
unexpected-keyword-args,
ungrouped-imports,
unnecessary-lambda,
unreachable,
unused-import,
useless-else-on-loop,
wrong-import-order,
[FORMAT]
max-line-length = 79
[CLASSES]
valid-metaclass-classmethod-first-arg = metacls
[REPORTS]
reports = no
score = no