Skip to content

Commit 845c307

Browse files
committedAug 27, 2024·
Fix formatter
1 parent ea84ac3 commit 845c307

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

‎package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
"check-errors": "tsc --noemit",
99
"format": "prettier --write \"**/*.{ts,tsx}\"",
1010
"format-scss": "stylelint \"**/*.scss\" --fix",
11-
"format-staged": "lint-staged",
12-
"precommit": "no-master-commits -b main"
11+
"format-staged": "lint-staged"
1312
},
1413
"peerDependencies": {},
1514
"dependencies": {},
@@ -20,10 +19,10 @@
2019
],
2120
"lint-staged": {
2221
"*.{ts,tsx}": [
23-
"prettier --write"
22+
"prettier --write \"**/*.{ts,tsx}\""
2423
],
2524
"*.scss": [
26-
"stylelint --fix"
25+
"stylelint \"**/*.scss\" --fix"
2726
]
2827
}
29-
}
28+
}

0 commit comments

Comments
 (0)
Please sign in to comment.