blob: 42dda30a56fd1b9f6cfcd2dafc0f1dc8e5b47b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
"steps": [
{
"if": "windows",
"args": "lint main.jsx",
"output": "main_windows.out",
"exitCode": 1
},
{
"if": "unix",
"args": "lint main.jsx",
"output": "main_unix.out",
"exitCode": 1
}
]
}
|