Skip to content

Commit b38fd1a

Browse files
committed
Roo Code figured it out
1 parent 902d106 commit b38fd1a

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/code-qa.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,8 @@ jobs:
2828
run: npm run compile
2929
- name: Check types
3030
run: npm run check-types
31-
- name: Lint extension
32-
run: npx eslint -c .eslintrc.json --debug --max-warnings=0 src/**/*.ts
33-
- name: Lint webview
34-
working-directory: webview-ui
35-
run: npx eslint -c .eslintrc.json --debug --max-warnings=0 src/**/*.ts src/**/*.tsx
31+
- name: Lint
32+
run: npm run lint
3633

3734
check-translations:
3835
runs-on: ubuntu-latest

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364
"install-webview": "cd webview-ui && npm install",
365365
"install-e2e": "cd e2e && npm install",
366366
"lint": "npm-run-all -l -p lint:*",
367-
"lint:extension": "eslint src/**/*.ts",
367+
"lint:extension": "eslint src --ext .ts",
368368
"lint:webview": "cd webview-ui && npm run lint",
369369
"lint:e2e": "cd e2e && npm run lint",
370370
"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/**/*.ts src/**/*.tsx",
7+
"lint": "eslint src --ext .ts,.tsx",
88
"check-types": "tsc",
99
"test": "jest -w=40%",
1010
"dev": "vite",

0 commit comments

Comments
 (0)