We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56f0731 commit 95c4447Copy full SHA for 95c4447
1 file changed
package.json
@@ -42,8 +42,8 @@
42
"build:tsc": "tsc --noEmit",
43
"build:inspector": "eslint-config-inspector build --config ./playground/eslint-inspector.config.ts --basePath playground",
44
"typecheck": "tsc --noEmit",
45
- "lint:check": "prettier . --check && eslint .",
46
- "lint:fix": "prettier . --write %% eslint . --fix",
+ "lint:check": "prettier --check . && eslint .",
+ "lint:fix": "prettier --write . && eslint . --fix",
47
"release": "bumpp --commit \"chore(release): publish v%s\"",
48
"update:deps": "pnpx taze minor -w -f -l -r",
49
"prepare": "husky"
@@ -74,7 +74,10 @@
74
"typescript": "^5.8.3"
75
},
76
"lint-staged": {
77
- "*": "eslint --fix"
+ "*": [
78
+ "prettier --write",
79
+ "eslint --fix"
80
+ ]
81
82
"prettier": {}
83
}
0 commit comments