-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.glitterrc
More file actions
37 lines (37 loc) · 703 Bytes
/
.glitterrc
File metadata and controls
37 lines (37 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"commit_message": "$1: $2: $3+",
"commit_message_arguments": [
{
"argument": 1,
"case": "lower",
"type_enums": [
"fix",
"feat",
"chore",
"refactor",
"docs",
"void",
"deps",
"ci"
]
}
],
"custom_tasks": [
{
"name": "fmt",
"execute": [
"cargo fmt"
]
},
{
"name": "lint",
"execute": [
"cargo lint"
]
}
],
"hooks": [
"fmt",
"lint"
]
}