This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
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.
Merge pull request #22 from basics/feature/update
feat(update): updated versions
- Loading branch information
Showing
8 changed files
with
6,249 additions
and
7,000 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
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,20 @@ | ||
{ | ||
"branchNameLinter": { | ||
"prefixes": ["feature", "hotfix", "release"], | ||
"suggestions": { | ||
"features": "feature", | ||
"feat": "feature", | ||
"fix": "hotfix", | ||
"releases": "release" | ||
}, | ||
"banned": ["wip"], | ||
"skip": ["skip-ci"], | ||
"disallowed": ["master", "develop", "staging"], | ||
"seperator": "/", | ||
"msgBranchBanned": "Branches with the name \"%s\" are not allowed.", | ||
"msgBranchDisallowed": "Pushing to \"%s\" is not allowed, use git-flow.", | ||
"msgPrefixNotAllowed": "Branch prefix \"%s\" is not allowed.", | ||
"msgPrefixSuggestion": "Instead of \"%s\" try \"%s\".", | ||
"msgSeperatorRequired": "Branch \"%s\" must contain a seperator \"%s\"." | ||
} | ||
} |
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,7 @@ | ||
{ | ||
"hooks": { | ||
"pre-push": "npx branch-name-lint .branchlintrc", | ||
"pre-commit": "npm run lint", | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
} |
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,10 @@ | ||
{ | ||
"require": [ | ||
"@babel/register" | ||
], | ||
"reporter": [ | ||
"lcov" | ||
], | ||
"sourceMap": false, | ||
"instrument": false | ||
} |
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
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
Oops, something went wrong.