-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.pylint.ini
54 lines (46 loc) · 1.19 KB
/
.pylint.ini
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
[MASTER]
load-plugins=pylint_django
django-settings-module=config.settings.local
[MESSAGES CONTROL]
disable=
# Generally useless for this project:
fixme,
global-statement,
invalid-name,
missing-docstring,
redefined-outer-name,
too-few-public-methods,
too-many-locals,
too-many-arguments,
unnecessary-pass,
too-many-branches,
too-many-return-statements,
too-many-public-methods,
too-many-ancestors,
arguments-differ,
too-many-statements,
duplicate-code,
cyclic-import,
too-many-instance-attributes,
too-many-nested-blocks,
unspecified-encoding,
use-sequence-for-iteration,
too-many-lines,
# Disabling these helps to write more expressive tests:
expression-not-assigned,
singleton-comparison,
# Disabling these for fixture loading:
wildcard-import,
unused-wildcard-import,
# Handled by automatic formatting:
line-too-long,
wrong-import-order,
trailing-newlines,
ungrouped-imports,
# Handled by type checking:
unsupported-assignment-operation,
unsubscriptable-object,
[REPORTS]
score=no
[FORMAT]
ignore-long-lines=^.*((https?:)|(pragma:)|(TODO:)|(type:)|(path='/)).*$