-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7eb790
commit 48d31ed
Showing
5 changed files
with
1,822 additions
and
8 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,11 @@ | ||
build(scope): Changes that affect the build system or external dependencies | ||
chore(scope): Other changes that don't modify src or test files | ||
ci(scope): Changes to our CI configuration files and scripts | ||
docs(scope): Documentation only changes | ||
feat(scope): A new feature | ||
fix(scope): A bug fix | ||
perf(scope): A code change that improves performance | ||
refactor(scope): A code change that neither fixes a bug nor adds a feature | ||
revert(scope): Reverts a previous commit | ||
style(scope): Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | ||
test(scope): Adding missing tests or correcting existing tests |
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" | ||
|
||
npx --no -- commitlint --edit |
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,6 @@ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
rules: { | ||
'scope-enum': [2, 'always', ['all', 'example', 'app', 'linter', 'nodejs', 'website']] | ||
} | ||
}; |
Oops, something went wrong.