Skip to content

Commit 8584711

Browse files
build: add commitlint and standard-version
updated pre-commit with commitlinting accordingly
1 parent b22553d commit 8584711

File tree

5 files changed

+7482
-3179
lines changed

5 files changed

+7482
-3179
lines changed

.commitlintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["@commitlint/config-conventional"]
3+
}

.githooks/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
npx eslint ./
2+
npx --no-install commitlint --edit "$1" && npx eslint ./

.versionrc.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"types" : [
3+
{"type": "feat", "section": "Features"},
4+
{"type": "fix", "section": "Bug Fixes"},
5+
{"type": "chore", "hidden": true},
6+
{"type": "docs", "hidden": true},
7+
{"type": "style", "hidden": true},
8+
{"type": "refactor", "hidden": true},
9+
{"type": "perf", "hidden": true},
10+
{"type": "test", "hidden": true}
11+
]
12+
}

0 commit comments

Comments
 (0)