Skip to content

Commit c136a2b

Browse files
authored
Merge pull request #75 from trypear/build
Added esling no flat config so builds pass
2 parents b7f1ebf + e8bbc8f commit c136a2b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"lint": "eslint src/**/*.ts",
6+
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint src/**/*.ts",
77
"check-types": "tsc --noEmit",
88
"test": "npm run build && npx dotenvx run -f .env.local -- node ./out/runTest.js",
99
"ci": "npm run vscode-test && npm run test",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@
341341
"install-webview": "cd webview-ui && npm install",
342342
"install-e2e": "cd e2e && npm install",
343343
"lint": "npm-run-all -l -p lint:*",
344-
"lint:extension": "eslint src --ext .ts",
344+
"lint:extension": "ESLINT_USE_FLAT_CONFIG=false eslint src --ext .ts",
345345
"lint:webview": "cd webview-ui && npm run lint",
346346
"lint:e2e": "cd e2e && npm run lint",
347347
"check-types": "npm-run-all -l -p check-types:*",

webview-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"scripts": {
7-
"lint": "eslint src --ext .ts,.tsx",
7+
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint src --ext .ts,.tsx",
88
"check-types": "tsc",
99
"test": "jest -w=40%",
1010
"dev": "vite",

0 commit comments

Comments
 (0)