From 0023e7a9c9a97dba486617c95325def32568f5a4 Mon Sep 17 00:00:00 2001 From: Himess <95512809+Himess@users.noreply.github.com> Date: Sat, 28 Dec 2024 12:02:18 +0300 Subject: [PATCH] Fix: Remove trailing comma in rust-analyzer linkedProjects configuration 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. --- .vscode/settings.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6cb83cc9f6..a49b8bf657 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "rust-analyzer.linkedProjects": [ "./rust/main/Cargo.toml", - "./rust/sealevel/Cargo.toml", - ], -} \ No newline at end of file + "./rust/sealevel/Cargo.toml" + ] +}