-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc_allowed_to_fail
57 lines (39 loc) · 1.29 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
51
52
53
54
55
56
57
# 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
[BASIC]
# for global variable setting
good-names=keep_data,download_dir,gisdbase,tgtgisrc,tmploc,srcgisrc
[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+?|# %%*
[MESSAGES CONTROL]
# E0606 (possibly-used-before-assignment): to set options and flags at the bottom of the file without pre-initialization
disable=E0606
[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