File tree Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change
1
+ # https://www.conventionalcommits.org/en/v1.0.0-beta.2/#specification
2
+
3
+ snippet fix " fix conventional commit"
4
+ fix(${1: scope } ): ${2: title }
5
+
6
+ ${0: body }
7
+
8
+ endsnippet
9
+
10
+ snippet feat " feat conventional commit"
11
+ feat(${1: scope } ): ${2: title }
12
+
13
+ ${0: body }
14
+
15
+ endsnippet
16
+
17
+ snippet chore " chore conventional commit"
18
+ chore(${1: scope } ): ${2: title }
19
+
20
+ ${0: body }
21
+
22
+ endsnippet
23
+
24
+ snippet docs " docs conventional commit"
25
+ docs(${1: scope } ): ${2: title }
26
+
27
+ ${0: body }
28
+
29
+ endsnippet
30
+
31
+ snippet refactor " refactor conventional commit"
32
+ refactor(${1: scope } ): ${2: title }
33
+
34
+ ${0: body }
35
+
36
+ endsnippet
37
+
38
+ snippet test " test conventional commit"
39
+ test(${1: scope } ): ${2: title }
40
+
41
+ ${0: body }
42
+
43
+ endsnippet
44
+
45
+ snippet ci " ci conventional commit"
46
+ ci(${1: scope } ): ${2: title }
47
+
48
+ ${0: body }
49
+
50
+ endsnippet
51
+
You can’t perform that action at this time.
0 commit comments