forked from ManageIQ/manageiq-v2v-conversion_host
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
46 lines (42 loc) · 1.18 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
[MASTER]
# Use multiple processes to speed up Pylint. It saves only couple of seconds,
# but the only thing it cannot catch is duplicate-code, which was mostly
# false-positive at the time of writing this
jobs=0
persistent=no
suggestion-mode=yes
extension-pkg-whitelist=pycurl
max-module-lines=1500
[MESSAGES CONTROL]
disable=arguments-differ,
attribute-defined-outside-init,
bad-continuation,
bad-whitespace,
broad-except,
consider-iterating-dictionary,
consider-using-with,
deprecated-method,
duplicate-except,
fixme,
import-outside-toplevel,
invalid-name,
len-as-condition,
logging-not-lazy,
missing-docstring,
no-else-return,
no-self-use,
superfluous-parens,
too-few-public-methods,
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-return-statements,
too-many-statements,
unnecessary-pass,
unused-argument,
unused-variable,
useless-object-inheritance, # Wait for python2 deprecation
wrong-import-order
[REPORTS]
output-format=colorized
score=no