forked from pixee/pixee-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
40 lines (28 loc) · 917 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
[MAIN]
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
jobs=0
# Add files or directories matching the regex patterns to the ignore-list. The
# regex matches against paths and can be in Posix or Windows format.
ignore-paths=
tests/samples,
# Specify a score threshold under which the program will exit with error.
fail-under=10.0
# Return non-zero exit code if any of these messages/categories are detected,
# even if score is above --fail-under value. Syntax same as enable. Messages
# specified are enabled, while categories only check already-enabled messages.
fail-on=
[MESSAGES CONTROL]
enable=
disable=
C,
broad-exception-caught,
too-many-ancestors,
too-few-public-methods,
duplicate-code,
fixme,
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=100
[DESIGN]
max-locals = 20