We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a6e04f commit 3e4c2c3Copy full SHA for 3e4c2c3
.husky/.gitignore
.husky/commit-msg
.husky/pre-commit
package.json
@@ -30,11 +30,11 @@
30
"@commitlint/config-conventional": "latest",
31
"finepack": "latest",
32
"git-authors-cli": "latest",
33
- "husky": "~5.2.0",
34
"lerna": "latest",
35
"lint-staged": "latest",
36
"npm-check-updates": "latest",
37
"prettier-standard": "latest",
+ "simple-git-hooks": "latest",
38
"standard-markdown": "latest",
39
"standard-version": "latest"
40
},
@@ -67,11 +67,15 @@
67
"package.json": [
68
"finepack"
69
],
70
- "*.js": [
+ "*.js,!*.min.js,": [
71
"prettier-standard"
72
73
"*.md": [
74
"standard-markdown"
75
]
76
+ },
77
+ "simple-git-hooks": {
78
+ "commit-msg": "npx commitlint --edit",
79
+ "pre-commit": "npx lint-staged"
80
}
81
0 commit comments