We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0378c0e commit c76a563Copy full SHA for c76a563
.eslintrc.yaml
@@ -22,3 +22,9 @@ rules:
22
# For overloads.
23
no-dupe-class-members: off
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
src/node/entry.ts
@@ -35,7 +35,9 @@ const main = async (args: Args): Promise<void> => {
35
args = await readConfigFile(args)
36
37
if (args.verbose === true) {
38
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
39
logger.info(`Using extensions-dir at ${uxPath(args["extensions-dir"]!)}`)
40
41
logger.info(`Using user-data-dir at ${uxPath(args["user-data-dir"]!)}`)
42
}
43
0 commit comments