This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
forked from MozillaSecurity/funfuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
154 lines (135 loc) · 4.65 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[BASIC]
# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,ex,Run,_,f,g
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=120
[IMPORTS]
# List of modules that can be imported at any level, not just the top level
# one.
allow-any-import-level=resource,winreg
[MASTER]
# Use multiple processes to speed up Pylint.
# Note that sometimes the duplicate-code checker runs properly only when set to 1
jobs=3
# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
#
# Whole list retrieved on 2017-07-28 from: https://pylint.readthedocs.io/en/latest/technical_reference/extensions.html
# Remaining disabled: pylint.extensions.comparetozero,pylint.extensions.emptystring
load-plugins=pylint.extensions.bad_builtin,
pylint.extensions.check_elif,
pylint.extensions.docparams,
pylint.extensions.docstyle,
pylint.extensions.mccabe,
pylint.extensions.overlapping_exceptions,
pylint.extensions.redefined_variable_type
# Pickle collected data for later comparisons.
persistent=no
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifiers separated by comma (,) or put this
# option multiple times (only on the command line, not in the configuration
# file where it should appear only once).You can also use "--disable=all" to
# disable everything first and then reenable specific checks. For example, if
# you want to run only the similarities checker, you can use "--disable=all
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
disable=locally-disabled,
suppressed-message,
useless-suppression,
no-absolute-import,
old-division,
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once). See also the "--disable" option for examples.
enable=apply-builtin,
backtick,
bad-inline-option,
bad-python3-import,
basestring-builtin,
buffer-builtin,
c-extension-no-member,
cmp-builtin,
cmp-method,
coerce-builtin,
coerce-method,
delslice-method,
deprecated-itertools-function,
deprecated-pragma,
deprecated-str-translate-call,
deprecated-string-function,
deprecated-types-field,
dict-items-not-iterating,
dict-iter-method,
dict-keys-not-iterating,
dict-values-not-iterating,
dict-view-method,
div-method,
eq-without-hash,
exception-message-attribute,
execfile-builtin,
file-builtin,
file-ignored,
filter-builtin-not-iterating,
getslice-method,
hex-method,
idiv-method,
import-star-module-level,
indexing-exception,
input-builtin,
intern-builtin,
invalid-str-codec,
locally-enabled,
long-builtin,
long-suffix,
map-builtin-not-iterating,
metaclass-assignment,
next-method-called,
next-method-defined,
non-ascii-bytes-literal,
nonzero-method,
oct-method,
old-ne-operator,
old-octal-literal,
old-raise-syntax,
parameter-unpacking,
print-statement,
raising-string,
range-builtin-not-iterating,
raw_input-builtin,
raw-checker-failed,
rdiv-method,
reduce-builtin,
reload-builtin,
round-builtin,
setslice-method,
standarderror-builtin,
sys-max-int,
unichr-builtin,
unicode-builtin,
unpacking-in-except,
using-cmp-argument,
xrange-builtin,
zip-builtin-not-iterating,
[PARAMETER_DOCUMENTATION]
# Whether to accept totally missing parameter documentation in the docstring of
# a function that has parameters.
accept-no-param-doc=no
# Whether to accept totally missing raises documentation in the docstring of a
# function that raises an exception.
accept-no-raise-doc=no
# Whether to accept totally missing return documentation in the docstring of a
# function that returns a statement.
accept-no-return-doc=no
# Whether to accept totally missing yields documentation in the docstring of a
# generator.
accept-no-yields-doc=no
[REPORTS]
# Activate the evaluation score.
score=no
[SIMILARITIES]
# Ignore imports when computing similarities.
ignore-imports=yes