Skip to content

Commit

Permalink
Auto merge of #9110 - alex-semenyuk:fix_trailling_commas, r=xFrednet
Browse files Browse the repository at this point in the history
Remove trailing spaces

Closes #9108
changelog: remove trailing spaces,  which are not allowed by the JSON standard.
  • Loading branch information
bors committed Jul 3, 2022
2 parents 0fd4f1c + 9ef76e0 commit be9e35f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions util/etc/vscode-tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,50 +8,50 @@
"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",
"type": "shell",
"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
}
},
{
"label": "cargo test",
"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"
}
]
}

0 comments on commit be9e35f

Please sign in to comment.