Skip to content

Commit 03b4661

Browse files
committed
Remove periods from error messages and update lint scripts
1 parent cd3e3f7 commit 03b4661

File tree

4 files changed

+477
-94
lines changed

4 files changed

+477
-94
lines changed

package.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"scripts": {
3232
"check": "node scripts/check.mjs",
3333
"lint-ci": "pnpm run check:lint",
34-
"check:lint": "eslint --config .config/eslint.config.mjs --report-unused-disable-directives .",
35-
"check:lint:fix": "pnpm run check:lint --fix",
34+
"check:lint": "node scripts/lint-affected.mjs --all",
35+
"lint": "node scripts/lint-affected.mjs",
3636
"build": "node scripts/build.mjs",
3737
"build:dist": "node scripts/build.mjs",
3838
"build:dist:src": "node scripts/build.mjs --src-only",
@@ -49,14 +49,9 @@
4949
"coverage:percent": "node scripts/get-coverage-percentage.mjs",
5050
"coverage:type": "type-coverage",
5151
"coverage:type:verbose": "type-coverage --detail",
52-
"fix": "node scripts/lint-fix.mjs",
52+
"fix": "node scripts/lint-affected.mjs --fix",
5353
"knip:dependencies": "knip --dependencies",
5454
"knip:exports": "knip --include exports,duplicates",
55-
"lint": "oxlint -c=.config/.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json .",
56-
"lint:fix": "node scripts/lint-fix.mjs",
57-
"lint:fix:oxlint": "oxlint -c=.config/.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json --quiet --fix . | dev-null",
58-
"lint:fix:biome": "biome format --log-level=none --fix . | dev-null",
59-
"lint:fix:eslint": "eslint --config .config/eslint.config.mjs --report-unused-disable-directives --fix . | dev-null",
6055
"lint-staged": "lint-staged",
6156
"precommit": "lint-staged",
6257
"prepare": "husky",

0 commit comments

Comments
 (0)