This repository was archived by the owner on Dec 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathprocess-palette.json
More file actions
52 lines (52 loc) · 1.42 KB
/
process-palette.json
File metadata and controls
52 lines (52 loc) · 1.42 KB
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
{
"patterns": {
"P1": {
"expression": "(path):(line)"
},
"P2": {
"expression": "(path)\\s+(line)",
"path": "(?:\\/[\\w\\.\\-]+)+"
}
},
"commands": [
{
"namespace": "dbkoda-atom",
"action": "format",
"command": "yarn format {filePath}",
"arguments": [],
"cwd": "{configDirAbsPath}",
"inputDialogs": [],
"env": {},
"keystroke": "cmd-i",
"stream": true,
"outputTarget": "panel",
"outputBufferSize": 80000,
"maxCompleted": 1,
"autoShowOutput": true,
"autoHideOutput": true,
"scrollLockEnabled": false,
"singular": false,
"promptToSave": false,
"saveOption": "referenced",
"patterns": ["default"],
"successOutput": "{stdout}",
"errorOutput": "{stdout}\n{stderr}",
"fatalOutput": "Failed to execute : {fullCommand}\n{stdout}\n{stderr}",
"startMessage": null,
"successMessage": null,
"errorMessage": "Executed : {fullCommand}\nReturned with code {exitStatus}\n{stderr}",
"fatalMessage": "Failed to execute : {fullCommand}\n{stdout}\n{stderr}",
"menus": [],
"startScript": null,
"successScript": null,
"errorScript": null,
"scriptOnStart": false,
"scriptOnSuccess": false,
"scriptOnError": false,
"notifyOnStart": false,
"notifyOnSuccess": false,
"notifyOnError": true,
"input": null
}
]
}