Skip to content

Commit c736a3d

Browse files
author
Yoseph Kurnia Soenggoro
committed
minor change on package.json scripts
1 parent f5b2353 commit c736a3d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.husky/pre-commit

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
npm run lint:fix
5-
npm run format:fix
4+
npm run format

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@
3232
"clean": "npx gh-pages-clean",
3333
"lint:check": "eslint .",
3434
"lint:fix": "eslint --fix",
35-
"format:check": "prettier --check .",
36-
"format:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json,html}' .prettierrc --config ./.prettierrc",
35+
"prettier:check": "prettier --check .",
36+
"prettier:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json,html}' .prettierrc --config ./.prettierrc",
37+
"format": "npm run lint:fix && npm run prettier:fix",
3738
"prepare": "husky install"
3839
},
3940
"eslintConfig": {
@@ -64,4 +65,4 @@
6465
"prettier": "^2.5.1",
6566
"husky": "^7.0.0"
6667
}
67-
}
68+
}

0 commit comments

Comments
 (0)