parent
aa34c2f71b
commit
8619c579d6
@ -1 +0,0 @@ |
||||
_ |
@ -1,4 +1,6 @@ |
||||
#!/bin/sh |
||||
|
||||
# shellcheck source=./_/husky.sh |
||||
. "$(dirname "$0")/_/husky.sh" |
||||
|
||||
npx --no-install commitlint --edit |
||||
npx --no-install commitlint --edit "$1" |
||||
|
@ -1,4 +0,0 @@ |
||||
#!/bin/sh |
||||
. "$(dirname "$0")/_/husky.sh" |
||||
|
||||
# npm run test |
@ -1 +1,32 @@ |
||||
module.exports = { extends: ['@commitlint/config-conventional'] } |
||||
module.exports = { |
||||
ignores: [(commit) => commit.includes('init')], |
||||
extends: ['@commitlint/config-conventional'], |
||||
rules: { |
||||
'body-leading-blank': [2, 'always'], |
||||
'footer-leading-blank': [1, 'always'], |
||||
'header-max-length': [2, 'always', 108], |
||||
'subject-empty': [2, 'never'], |
||||
'type-empty': [2, 'never'], |
||||
'type-enum': [ |
||||
2, |
||||
'always', |
||||
[ |
||||
'feat', |
||||
'fix', |
||||
'perf', |
||||
'style', |
||||
'docs', |
||||
'test', |
||||
'refactor', |
||||
'build', |
||||
'ci', |
||||
'chore', |
||||
'revert', |
||||
'wip', |
||||
'workflow', |
||||
'types', |
||||
'release' |
||||
] |
||||
] |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue