-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
.pylintrc
41 lines (36 loc) · 857 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
[MASTER]
extension-pkg-whitelist = afl
load-plugins = pylint.extensions.check_elif
[MESSAGES CONTROL]
disable =
bad-continuation,
bad-option-value,
consider-using-f-string,
duplicate-code,
fixme,
invalid-name,
locally-disabled,
missing-docstring,
no-else-raise,
no-else-return,
raise-missing-from,
redefined-variable-type,
subprocess-popen-preexec-fn,
too-few-public-methods,
too-many-locals,
use-dict-literal,
useless-object-inheritance,
[TYPECHECK]
# FIXME: Pylint doesn't grok setuptools' distutils.
ignored-modules =
distutils.command.sdist,
distutils.core,
distutils.version,
[REPORTS]
reports = no
score = no
msg-template = {path}:{line}: {C}: {symbol} [{obj}] {msg}
[FORMAT]
max-line-length = 120
expected-line-ending-format = LF
# vim:ft=dosini ts=4 sts=4 sw=4 et