File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 22
22
# For overloads.
23
23
no-dupe-class-members : off
24
24
" @typescript-eslint/no-use-before-define " : off
25
+
26
+ settings :
27
+ # Does not work with CommonJS unfortunately.
28
+ import/ignore :
29
+ - env-paths
30
+ - xdg-basedir
Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ const main = async (args: Args): Promise<void> => {
35
35
args = await readConfigFile ( args )
36
36
37
37
if ( args . verbose === true ) {
38
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
38
39
logger . info ( `Using extensions-dir at ${ uxPath ( args [ "extensions-dir" ] ! ) } ` )
40
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
39
41
logger . info ( `Using user-data-dir at ${ uxPath ( args [ "user-data-dir" ] ! ) } ` )
40
42
}
41
43
You can’t perform that action at this time.
0 commit comments