-
Notifications
You must be signed in to change notification settings - Fork 24
/
.pylintrc_allowed_to_fail
50 lines (33 loc) · 1.03 KB
/
.pylintrc_allowed_to_fail
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
# For documentation about this config, see
# https://pylint.readthedocs.io/en/stable/user_guide/configuration/all-options.html (as of writing, version 2.17.4)
[MAIN]
exit-zero=yes
jobs=0 # Default: 1
load-plugins=
pylint.extensions.broad_try_clause
recursive=yes # Default: False
# score=no # Default: True
[BROAD_TRY_CLAUSE]
max-try-statements=4 # Default: 1
[FORMAT]
max-line-length=80 # Default: 100
max-module-lines=800 # Default: 1000
ignore-long-lines=.*COPYRIGHT:.* |# . description:.*|\s*(# )?.*http.:\/\/\S+?
[VARIABLES]
additional-builtins=_ # Default: ()
; [DESIGN]
; # Maximum number of arguments for function / method.
; # Default: 5
; max-args=9
; # Maximum number of attributes for a class (see R0902).
; # Default: 7
; max-attributes=11
; # Maximum number of branch for function / method body.
; # Default: 12
; max-branches=15
; # Maximum number of locals for function / method body.
; # Default: 15
; max-locals=19
; # Maximum number of return / yield for function / method body.
; # Default: 6
; max-returns=11