Skip to content

Commit 664e145

Browse files
committed
Make TS linting apply to test code as well
1 parent 16eb5cb commit 664e145

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/vscode/ada/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -881,8 +881,8 @@
881881
"compile": "node ./node_modules/typescript/bin/tsc",
882882
"watch": "node ./node_modules/typescript/bin/tsc -watch",
883883
"pretest": "npm run compile",
884-
"lint": "eslint \"./src/**/*.{js,ts,tsx}\" --quiet --fix",
885-
"cilint": "eslint \"./src/**/*.{js,ts,tsx}\"",
884+
"lint": "eslint \"./src/**/*.{js,ts,tsx}\" \"./test/**/*.{js,ts,tsx}\" --quiet --fix",
885+
"cilint": "eslint \"./src/**/*.{js,ts,tsx}\" \"./test/**/*.{js,ts,tsx}\"",
886886
"test": "vscode-test",
887887
"resolve-backtrace": "npx stacktracify",
888888
"clean": "node -e \"fs.rmSync('out',{force:true,recursive:true})\""

0 commit comments

Comments
 (0)