-
Notifications
You must be signed in to change notification settings - Fork 1
/
V.sublime-build
52 lines (52 loc) · 953 Bytes
/
V.sublime-build
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"env": {"VCOLORS": "never"},
"target": "vlang_builder",
"selector": "source.v",
"working_dir": "$file_path",
"variants": [
{
"name": "Compile",
"action": ""
},
{
"name": "Compile (production)",
"action": "",
"flags": ["-prod"]
},
{
"name": "Compile (skip unused)",
"action": "",
"flags": ["-prod", "-skip-unused"]
},
{
"name": "Test project",
"action": "test",
"project": true
},
{
"name": "Format file",
"action": "fmt",
"flags": ["-w"]
},
{
"name": "Format project",
"action": "fmt",
"flags": ["-w"],
"project": true
},
{
"name": "Vet file",
"action": "vet"
},
{
"name": "Vet project",
"action": "vet",
"project": true
},
{
"name": "Profile",
"action": "",
"flags": ["-profile", "$file_base_name.txt"]
},
]
}