Skip to content

Commit

Permalink
Fix: Remove trailing comma in rust-analyzer linkedProjects configuration
Browse files Browse the repository at this point in the history
This commit fixes a JSON syntax issue in the rust-analyzer configuration file. The trailing comma after the last item in the "rust-analyzer.linkedProjects" list has been removed to ensure the file adheres to the JSON standard. Without this fix, tools processing the JSON file could encounter errors.
  • Loading branch information
Himess authored Dec 28, 2024
1 parent a734483 commit 0023e7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"rust-analyzer.linkedProjects": [
"./rust/main/Cargo.toml",
"./rust/sealevel/Cargo.toml",
],
}
"./rust/sealevel/Cargo.toml"
]
}

0 comments on commit 0023e7a

Please sign in to comment.