forked from c4urself/bump2version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
58 lines (42 loc) · 902 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[REPORTS]
output-format=text
[BASIC]
#missing-docstring=no
[FORMAT]
max-line-length=100
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
[MESSAGES CONTROL]
disable=
fixme,
too-many-locals,
missing-docstring,
trailing-newlines,
invalid-name,
bad-continuation,
too-few-public-methods,
too-many-branches,
too-many-statements,
deprecated-method,
wrong-import-order,
ungrouped-imports,
unused-import,
useless-object-inheritance, # doesn't like class Foo(object) but required for py2
super-init-not-called,
protected-access,
[DESIGN]
#too-few-public-methods=no
#too-many-branches=no
#too-many-statements=no
max-args=10
[CLASSES]
#useless-object-inheritance=no
#super-init-not-called=no
valid-classmethod-first-arg=cls
[IMPORTS]
#wrong-import-order=no
#ungrouped-imports=no
#unused-import=no
[STDLIB]
#deprecated-method=no
[MISCELLANEOUS]
notes=FIXME,FIX,XXX,TODO