distributed_physics_test/.vscode/settings.json

34 lines
781 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.cargo.targetDir": true,
"cSpell.words": [
"Backquote",
"codegen",
"despawn",
"Despawns",
"lerp",
"PRNG",
"recip",
"respawns",
"Seedable",
"timestep",
"timesteps",
"winit",
"wyrand"
]
}