-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.sublime-project
48 lines (48 loc) · 1.01 KB
/
plugin.sublime-project
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
{
"folders":
[
{
"path": ".",
}
],
"settings":
{
"translate_tabs_to_spaces": false,
"tab_size": 2,
},
"build_systems":
[
{
"name": "Publish",
"working_dir": "$project_path",
"cmd": ["bash", "./publisher.sh"],
},
{
"name": "Pack",
"working_dir": "$project_path",
"cmd": ["bash", "./publisher.sh", "-p"],
},
{
"name": "PackDev",
"working_dir": "$project_path",
"cmd": ["bash", "./publisher.sh", "-d"],
},
{
"name": "Release",
"working_dir": "$project_path",
"cmd": ["bash", "./publisher.sh", "-C"],
},
{
"name": "Typing check",
"working_dir": "$project_path",
"cmd": ["mypy", "--show-column-numbers", "./kpi"],
"file_regex": "^([^:]*):([^:]*):((?:[^:]+:)?) error: ([^\\n]+)",
},
{
"name": "Ruff check",
"working_dir": "$project_path",
"cmd": ["ruff", "check", "./kpi"],
"file_regex": "^([^:]*):([^:]*):([^:]*):([^\\n]+)",
},
],
}