We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fcdb0f commit 8e9f54fCopy full SHA for 8e9f54f
editors/code/package.json
@@ -29,8 +29,8 @@
29
"build-base": "esbuild ./src/main.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node --target=node16",
30
"build": "npm run build-base -- --sourcemap",
31
"watch": "npm run build-base -- --sourcemap --watch",
32
- "lint": "tsfmt --verify && eslint -c .eslintrc.js --ext ts ./src ./tests",
33
- "fix": " tsfmt -r && eslint -c .eslintrc.js --ext ts ./src ./tests --fix",
+ "lint": "prettier --check . && eslint -c .eslintrc.js --ext ts ./src ./tests",
+ "fix": "prettier --write . && eslint -c .eslintrc.js --ext ts ./src ./tests --fix",
34
"pretest": "tsc && npm run build",
35
"test": "cross-env TEST_VARIABLE=test node ./out/tests/runTests.js"
36
},
0 commit comments