-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(cb2-8121): update husky scripts
- Loading branch information
1 parent
990203d
commit 492c471
Showing
5 changed files
with
71 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run commit-msg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run precommit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run prepush |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,54 @@ | ||
module.exports = { extends: ["@commitlint/config-conventional"] }; | ||
// https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/index.js | ||
// https://github.com/conventional-changelog/commitlint/blob/master/docs/reference-rules.md | ||
module.exports = { | ||
extends: ["@commitlint/config-conventional"], | ||
plugins: ["commitlint-plugin-function-rules"], | ||
rules: { | ||
"type-enum": [ | ||
2, | ||
"always", | ||
// in addtition to angular defaults, we add additional type for commits, breaking, breaking_change will force a major release with semantic-release | ||
// any body of commit containing BREAKING_CHANGE, BREAKING, etc.. will do too, please refer to the .releaserc.json file | ||
[ | ||
"revert", | ||
"feat", | ||
"test", | ||
"perf", | ||
"fix", | ||
"chore", | ||
"ci", | ||
"docs", | ||
"breaking_change", | ||
"breaking", | ||
"refactor", | ||
], | ||
], | ||
"subject-case": [1, "always", "lower-case"], | ||
// disable it to allow release notes from semantic-release to happen when releasing | ||
"footer-max-line-length": [0], | ||
"body-max-line-length": [0], | ||
// level: disabled to use our own rule with commitlint-plugin-function-rules plugin | ||
"scope-case": [0], | ||
"function-rules/scope-empty": [ | ||
2, | ||
"always", | ||
(parsed) => { | ||
const ticketNumberFormat = /^[a-z0-9]+-\d+$/; | ||
// type(scope?): subject | ||
// we want to ticket number to appear in the commit msg as well as scope when we release | ||
if ( | ||
parsed && | ||
((parsed.scope && parsed.scope.match(ticketNumberFormat) !== null) || | ||
parsed.scope === "release") | ||
) { | ||
return [true]; | ||
} else { | ||
return [ | ||
false, | ||
`scope must follow the format defined in the commitlint config. The current format is ${ticketNumberFormat}`, | ||
]; | ||
} | ||
}, | ||
], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters