Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
0xJonas committed May 25, 2024
1 parent 78fe45e commit 09677b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/rust-analyzer/editors/code/src/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ function getCCppDebugConfig(
args: runnable.args.executableArgs,
cwd: runnable.args.cwd || runnable.args.workspaceRoot || ".",
sourceFileMap,
environment: Object.entries(env).map(entry => {
return { "name": entry[0], "value": entry[1] };
environment: Object.entries(env).map((entry) => {
return { name: entry[0], value: entry[1] };
}),
// See https://github.com/rust-lang/rust-analyzer/issues/16901#issuecomment-2024486941
osx: {
Expand Down

0 comments on commit 09677b0

Please sign in to comment.