File tree 4 files changed +581
-19
lines changed
4 files changed +581
-19
lines changed Original file line number Diff line number Diff line change
1
+ // Commit Rules
2
+ module . exports = {
3
+ $schema : 'https://json.schemastore.org/commitlintrc.json' ,
4
+ extends : [ '@commitlint/config-conventional' ] ,
5
+ } ;
6
+ // ex) feat: add new feature (#13)
7
+ // ex) fix: fix Button styles (#15)
8
+ // ex) docs: add new docs (#13) (#14)
9
+ // ex) refactor: refactor Checkbox border (#11)
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+ . " $( dirname -- " $0 " ) /_/husky.sh"
3
+
4
+ yarn commitlint --edit $1
Original file line number Diff line number Diff line change 26
26
},
27
27
"devDependencies" : {
28
28
"@babel/core" : " ^7.19.1" ,
29
+ "@commitlint/cli" : " ^17.1.2" ,
30
+ "@commitlint/config-conventional" : " ^17.1.0" ,
29
31
"@emotion/babel-plugin" : " ^11.10.2" ,
30
32
"@emotion/react" : " ^11.10.4" ,
31
33
"@emotion/styled" : " ^11.10.4" ,
You can’t perform that action at this time.
0 commit comments