diff options
| author | bors <bors@rust-lang.org> | 2022-07-03 19:33:01 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-07-03 19:33:01 +0000 |
| commit | be9e35f6b2326524dffbaf13a46f9289743bd9fd (patch) | |
| tree | aabbfabef4d4100c5864126aa1e08f9e81b4e3f0 | |
| parent | 0fd4f1c75b4a7b341844596ae71c61224ca96d7e (diff) | |
| parent | 9ef76e051be050d49db7842d94c7ae76821f4e00 (diff) | |
| download | rust-be9e35f6b2326524dffbaf13a46f9289743bd9fd.tar.gz rust-be9e35f6b2326524dffbaf13a46f9289743bd9fd.zip | |
Auto merge of #9110 - alex-semenyuk:fix_trailling_commas, r=xFrednet
Remove trailing spaces Closes #9108 changelog: remove trailing spaces, which are not allowed by the JSON standard.
| -rw-r--r-- | util/etc/vscode-tasks.json | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/util/etc/vscode-tasks.json b/util/etc/vscode-tasks.json index e0074510c9f..ab98f9b4154 100644 --- a/util/etc/vscode-tasks.json +++ b/util/etc/vscode-tasks.json @@ -8,15 +8,15 @@ "problemMatcher": [], "group": { "kind": "build", - "isDefault": true, - }, + "isDefault": true + } }, { "label": "cargo dev fmt", "type": "shell", "command": "cargo dev fmt", "problemMatcher": [], - "group": "none", + "group": "none" }, { "label": "cargo uitest", @@ -24,19 +24,19 @@ "command": "cargo uitest", "options": { "env": { - "RUST_BACKTRACE": "1", // This task will usually execute all UI tests inside `tests/ui` you can // optionally uncomment the line below and only run a specific test. // // See: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md#testing // // "TESTNAME": "<TODO>", - }, + "RUST_BACKTRACE": "1" + } }, "problemMatcher": [], "group": { "kind": "test", - "isDefault": true, + "isDefault": true } }, { @@ -44,14 +44,14 @@ "type": "shell", "command": "cargo test", "problemMatcher": [], - "group": "test", + "group": "test" }, { "label": "cargo dev bless", "type": "shell", "command": "cargo dev bless", "problemMatcher": [], - "group": "none", - }, - ], + "group": "none" + } + ] } |
