Skip to content

Commit

Permalink
chore: add .vscode/settings.json
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Feb 7, 2024
1 parent 64909f9 commit 2323264
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
// "rust-analyzer.cargo.target": "aarch64-unknown-none-softfloat",
// "rust-analyzer.cargo.target": "riscv64imac-unknown-none-elf",
"rust-analyzer.cargo.target": "x86_64-unknown-none",
// "rust-analyzer.cargo.target": "x86_64-unknown-uefi",
"rust-analyzer.check.overrideCommand": [
"cargo",
"clippy",
"--quiet",
"--message-format=json",
"--target=aarch64-unknown-none-softfloat",
"--target=riscv64imac-unknown-none-elf",
"--target=x86_64-unknown-none",
"--target=x86_64-unknown-uefi",
],
"rust-analyzer.check.targets": [
"aarch64-unknown-none-softfloat",
"riscv64imac-unknown-none-elf",
"x86_64-unknown-none",
"x86_64-unknown-uefi",
]
}

0 comments on commit 2323264

Please sign in to comment.