-
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 #6 from cyberkaidev/feature/new-layout-2.0.0
New layout 2.0.0
- Loading branch information
Showing
167 changed files
with
5,858 additions
and
5,560 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,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
./node_modules/.bin/commitlint --edit "$1" |
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,2 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" |
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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,56 @@ | ||
import { RuleConfigCondition, RuleConfigSeverity } from '@commitlint/types'; | ||
|
||
export default { | ||
parserPreset: 'conventional-changelog-conventionalcommits', | ||
rules: { | ||
'type-enum': [ | ||
RuleConfigSeverity.Error, | ||
'always', | ||
[ | ||
':tada:', // Initial commit | ||
':bookmark:', // Version tag | ||
':sparkles:', // New feature | ||
':bug:', // Bugfix | ||
':card_index:', // Metadata | ||
':books:', // Documentation | ||
':bulb:', // Documenting source code | ||
':racehorse:', // Performance | ||
':lipstick:', // Cosmetic | ||
':rotating_light:', // Tests | ||
':white_check_mark:', // Adding a test | ||
':heavy_check_mark:', // Make a test pass | ||
':zap:', // General update | ||
':art:', // Improve format/structure | ||
':hammer:', // Refactor code | ||
':fire:', // Removing code/files | ||
':green_heart:', // Continuous Integration | ||
':lock:', // Security | ||
':arrow_up:', // Upgrading dependencies | ||
':arrow_down:', // Downgrading dependencies | ||
':shirt:', // Lint | ||
':alien:', // Translation | ||
':pencil:', // Text | ||
':ambulance:', // Critical hotfix | ||
':rocket:', // Deploying stuff | ||
':apple:', // Fixing on MacOS | ||
':penguin:', // Fixing on Linux | ||
':checkered_flag:', // Fixing on Windows | ||
':construction:', // Work in progress | ||
':construction_worker:', // Adding CI build system | ||
':chart_with_upwards_trend:', // Analytics or tracking code | ||
':heavy_minus_sign:', // Removing a dependency | ||
':heavy_plus_sign:', // Adding a dependency | ||
':whale:', // Docker | ||
':wrench:', // Configuration files | ||
':package:', // Package.json in JS | ||
':twisted_rightwards_arrows:', // Merging branches | ||
':hankey:', // Bad code / need improv. | ||
':rewind:', // Reverting changes | ||
':boom:', // Breaking changes | ||
':ok_hand:', // Code review changes | ||
':wheelchair:', // Accessibility | ||
':truck:', // Move/rename repository | ||
], | ||
] as [RuleConfigSeverity, RuleConfigCondition, string[]], | ||
}, | ||
}; |
Oops, something went wrong.