-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpylintrc
54 lines (43 loc) · 1.09 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
[MASTER]
load-plugins=pylint_django
[MESSAGES CONTROL]
disable=
# Various stylistic checks that are too much of a hassle.
blacklisted-name,
invalid-name,
missing-docstring,
superfluous-parens,
bad-whitespace,
bad-continuation,
no-self-use,
too-many-lines,
too-many-star-expressions,
too-many-function-args,
too-many-args,
too-many-format-args,
too-many-ancestors,
too-many-instance-attributes,
too-many-public-methods,
too-many-return-statements,
too-many-branches,
too-many-arguments,
too-many-locals,
too-many-statements,
too-many-boolean-expressions,
too-many-nested-blocks,
too-few-args,
too-few-format-args,
too-few-public-methods,
enable=
raw-checker-failed,
bad-inline-option,
file-ignored,
useless-suppression,
deprecated-pragma,
[EXCEPTIONS]
# Catching `Exception` is a perfectly good idea in many cases.
overgeneral-exceptions=
[IMPORTS]
# HTTPolice is a third-party library from this package's point of view,
# used only through its public API.
known-third-party=httpolice