Skip to content

Commit be9e35f

Browse files
committed
Auto merge of rust-lang#9110 - alex-semenyuk:fix_trailling_commas, r=xFrednet
Remove trailing spaces Closes rust-lang#9108 changelog: remove trailing spaces, which are not allowed by the JSON standard.
2 parents 0fd4f1c + 9ef76e0 commit be9e35f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

util/etc/vscode-tasks.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -8,50 +8,50 @@
88
"problemMatcher": [],
99
"group": {
1010
"kind": "build",
11-
"isDefault": true,
12-
},
11+
"isDefault": true
12+
}
1313
},
1414
{
1515
"label": "cargo dev fmt",
1616
"type": "shell",
1717
"command": "cargo dev fmt",
1818
"problemMatcher": [],
19-
"group": "none",
19+
"group": "none"
2020
},
2121
{
2222
"label": "cargo uitest",
2323
"type": "shell",
2424
"command": "cargo uitest",
2525
"options": {
2626
"env": {
27-
"RUST_BACKTRACE": "1",
2827
// This task will usually execute all UI tests inside `tests/ui` you can
2928
// optionally uncomment the line below and only run a specific test.
3029
//
3130
// See: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md#testing
3231
//
3332
// "TESTNAME": "<TODO>",
34-
},
33+
"RUST_BACKTRACE": "1"
34+
}
3535
},
3636
"problemMatcher": [],
3737
"group": {
3838
"kind": "test",
39-
"isDefault": true,
39+
"isDefault": true
4040
}
4141
},
4242
{
4343
"label": "cargo test",
4444
"type": "shell",
4545
"command": "cargo test",
4646
"problemMatcher": [],
47-
"group": "test",
47+
"group": "test"
4848
},
4949
{
5050
"label": "cargo dev bless",
5151
"type": "shell",
5252
"command": "cargo dev bless",
5353
"problemMatcher": [],
54-
"group": "none",
55-
},
56-
],
54+
"group": "none"
55+
}
56+
]
5757
}

0 commit comments

Comments
 (0)