Skip to content

Commit 95c4447

Browse files
committed
chore: lint:fix script command typo
1 parent 56f0731 commit 95c4447

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
"build:tsc": "tsc --noEmit",
4343
"build:inspector": "eslint-config-inspector build --config ./playground/eslint-inspector.config.ts --basePath playground",
4444
"typecheck": "tsc --noEmit",
45-
"lint:check": "prettier . --check && eslint .",
46-
"lint:fix": "prettier . --write %% eslint . --fix",
45+
"lint:check": "prettier --check . && eslint .",
46+
"lint:fix": "prettier --write . && eslint . --fix",
4747
"release": "bumpp --commit \"chore(release): publish v%s\"",
4848
"update:deps": "pnpx taze minor -w -f -l -r",
4949
"prepare": "husky"
@@ -74,7 +74,10 @@
7474
"typescript": "^5.8.3"
7575
},
7676
"lint-staged": {
77-
"*": "eslint --fix"
77+
"*": [
78+
"prettier --write",
79+
"eslint --fix"
80+
]
7881
},
7982
"prettier": {}
8083
}

0 commit comments

Comments
 (0)