Skip to content

Commit 37c02da

Browse files
committed
Reformat and add nl-at-eof to the vscode configs
1 parent 969808b commit 37c02da

File tree

2 files changed

+35
-38
lines changed

2 files changed

+35
-38
lines changed

.vscode/extensions.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"recommendations": [
3-
"tamasfe.even-better-toml",
4-
"rust-lang.rust-analyzer",
5-
"ryanluker.vscode-coverage-gutters",
6-
"serayuzgur.crates"
7-
]
8-
}
2+
"recommendations": [
3+
"tamasfe.even-better-toml",
4+
"rust-lang.rust-analyzer",
5+
"ryanluker.vscode-coverage-gutters",
6+
"serayuzgur.crates"
7+
]
8+
}

.vscode/tasks.json

+28-31
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,29 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
4-
{
5-
"type": "cargo",
6-
"isBackground": true,
7-
"command": "watch",
8-
"args": [
9-
"-x",
10-
"test"
11-
],
12-
"problemMatcher": {
13-
"base": "$rustc-watch",
14-
"owner": "cargo test",
15-
"source": "tests",
16-
"pattern": {
17-
"regexp": "at location: (.*):(\\d+)",
18-
"file": 1,
19-
"line": 2
20-
},
21-
},
22-
"group": {
23-
"kind": "test",
24-
"isDefault": true
25-
},
26-
"label": "rust: cargo watch tests",
27-
"runOptions": {
28-
"runOn": "folderOpen"
29-
}
30-
}
31-
]
32-
}
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "cargo",
6+
"isBackground": true,
7+
"command": "watch",
8+
"args": ["-x", "test"],
9+
"problemMatcher": {
10+
"base": "$rustc-watch",
11+
"owner": "cargo test",
12+
"source": "tests",
13+
"pattern": {
14+
"regexp": "at location: (.*):(\\d+)",
15+
"file": 1,
16+
"line": 2
17+
}
18+
},
19+
"group": {
20+
"kind": "test",
21+
"isDefault": true
22+
},
23+
"label": "rust: cargo watch tests",
24+
"runOptions": {
25+
"runOn": "folderOpen"
26+
}
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)