forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: enforce conventional commit messages
- Loading branch information
1 parent
2fcd976
commit 54d88ec
Showing
3 changed files
with
5,604 additions
and
807 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,15 @@ | ||
{ | ||
"types": ["feat", "fix", "docs", "style", "refactor", "perf", "test", "build", "ci", "chore", "revert"], | ||
"scope": { | ||
"required": false, | ||
"allowed": ["*"], | ||
"validate": false, | ||
"multiple": true | ||
}, | ||
"warnOnFail": false, | ||
"maxSubjectLength": 100, | ||
"subjectPattern": ".+", | ||
"subjectPatternErrorMsg": "subject does not match subject pattern!", | ||
"helpMessage": "\nPlease use conventional commit messages.\nLearn more at: http://conventionalcommits.org/,\nfor additional information check CONTRIBUTING guidelines of this repo.\n\n Alternatively You can use inbuilt command: \"npm run commit\" right now.", | ||
"autoFix": false | ||
} |
Oops, something went wrong.