43 lines
953 B
JSON
43 lines
953 B
JSON
{
|
|
"files.readonlyFromPermissions": true,
|
|
"files.readonlyInclude": {
|
|
"**/.rustup/**": true,
|
|
"**/.cargo/registry/**": true,
|
|
"**/.cargo/git/**": true,
|
|
"**/.local/share/cargo/registry/**": true,
|
|
"**/.local/share/cargo/git/**": true
|
|
},
|
|
"[rust]": {
|
|
"editor.defaultFormatter": "rust-lang.rust-analyzer",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"rust-analyzer.cargo.extraEnv": {
|
|
"RUSTFLAGS": "-Clinker=clang -Clink-arg=-fuse-ld=lld"
|
|
},
|
|
"rust-analyzer.check.command": "clippy", // "check", //
|
|
// "rust-analyzer.check.overrideCommand": [
|
|
// "bevy_lint",
|
|
// "--workspace",
|
|
// "--all-targets",
|
|
// "--message-format=json-diagnostic-rendered-ansi",
|
|
// ],
|
|
"rust-analyzer.cargo.targetDir": true,
|
|
"cSpell.words": [
|
|
"Backquote",
|
|
"Cheatbook",
|
|
"codegen",
|
|
"despawn",
|
|
"Despawns",
|
|
"Iyes",
|
|
"lerp",
|
|
"PRNG",
|
|
"recip",
|
|
"respawns",
|
|
"Seedable",
|
|
"timestep",
|
|
"timesteps",
|
|
"winit",
|
|
"wyrand",
|
|
"zerocopy"
|
|
]
|
|
}
|