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 2222 # For overloads.
2323 no-dupe-class-members : off
2424 " @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> => {
3535 args = await readConfigFile ( args )
3636
3737 if ( args . verbose === true ) {
38+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
3839 logger . info ( `Using extensions-dir at ${ uxPath ( args [ "extensions-dir" ] ! ) } ` )
40+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
3941 logger . info ( `Using user-data-dir at ${ uxPath ( args [ "user-data-dir" ] ! ) } ` )
4042 }
4143
You can’t perform that action at this time.
0 commit comments