Skip to content

Commit

Permalink
Reformat and add nl-at-eof to the vscode configs
Browse files Browse the repository at this point in the history
  • Loading branch information
iustin committed Mar 9, 2024
1 parent 969808b commit 37c02da
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 38 deletions.
14 changes: 7 additions & 7 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"recommendations": [
"tamasfe.even-better-toml",
"rust-lang.rust-analyzer",
"ryanluker.vscode-coverage-gutters",
"serayuzgur.crates"
]
}
"recommendations": [
"tamasfe.even-better-toml",
"rust-lang.rust-analyzer",
"ryanluker.vscode-coverage-gutters",
"serayuzgur.crates"
]
}
59 changes: 28 additions & 31 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,29 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"isBackground": true,
"command": "watch",
"args": [
"-x",
"test"
],
"problemMatcher": {
"base": "$rustc-watch",
"owner": "cargo test",
"source": "tests",
"pattern": {
"regexp": "at location: (.*):(\\d+)",
"file": 1,
"line": 2
},
},
"group": {
"kind": "test",
"isDefault": true
},
"label": "rust: cargo watch tests",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"isBackground": true,
"command": "watch",
"args": ["-x", "test"],
"problemMatcher": {
"base": "$rustc-watch",
"owner": "cargo test",
"source": "tests",
"pattern": {
"regexp": "at location: (.*):(\\d+)",
"file": 1,
"line": 2
}
},
"group": {
"kind": "test",
"isDefault": true
},
"label": "rust: cargo watch tests",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}

0 comments on commit 37c02da

Please sign in to comment.