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 727f295 commit cd8bc39Copy full SHA for cd8bc39
2 files changed
AGENTS.md
@@ -32,6 +32,7 @@ Package dependencies:
32
npm run build # Build all packages
33
34
npm run lint # Run all linting
35
+npm run lint-fix # Auto-fix linting issues
36
37
npm run test # Run all tests except VS Code extension tests
38
npx vitest --run --project unit # Run only unit tests
package.json
@@ -21,6 +21,9 @@
21
"lint:tsc": "tsc -b",
22
"lint:oxfmt": "oxfmt --check",
23
"lint:oxlint": "oxlint --type-aware",
24
+ "lint-fix": "run-s -c lint-fix:*",
25
+ "lint-fix:oxfmt": "oxfmt --write",
26
+ "lint-fix:oxlint": "oxlint --type-aware --fix",
27
"test": "vitest --run",
28
"vscode-test": "vscode-test",
29
"update-generated-in-examples": "./scripts/update-generated-in-examples.sh"
0 commit comments