File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 24
24
// "customizations": {},
25
25
26
26
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
27
- "remoteUser" : " root"
27
+ "remoteUser" : " root" ,
28
+ "customizations" : {
29
+ "vscode" : {
30
+ "extensions" : [
31
+ " tamasfe.even-better-toml" ,
32
+ " ms-python.python" ,
33
+ " ms-python.vscode-pylance" ,
34
+ " EditorConfig.EditorConfig"
35
+ ]
36
+ }
37
+ }
28
38
}
Original file line number Diff line number Diff line change @@ -37,10 +37,14 @@ line-length = 80
37
37
[tool .pylint .main ]
38
38
analyse-fallback-blocks = true
39
39
py-version = " 3.7"
40
+ extension-pkg-allow-list =[" lxml" ]
40
41
41
42
[tool .pylint .messages_control ]
42
43
disable = [
43
44
" raw-checker-failed" ,
45
+ " no-else-return" ,
46
+ " nested-min-max" ,
47
+ " bad-mcs-classmethod-argument" ,
44
48
" bad-inline-option" ,
45
49
" locally-disabled" ,
46
50
" file-ignored" ,
@@ -89,6 +93,7 @@ disable = [
89
93
" too-many-return-statements" ,
90
94
" line-too-long" ,
91
95
" too-many-instance-attributes" ,
96
+ " broad-exception-raised" ,
92
97
" use-implicit-booleaness-not-comparison" ,
93
98
]
94
99
You can’t perform that action at this time.
0 commit comments