mirror of
https://github.com/ankitects/anki.git
synced 2026-01-16 07:19:01 -05:00
12 lines
486 B
JSON
12 lines
486 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"python.analysis.extraPaths": ["./pylib"],
|
|
"python.formatting.provider": "black",
|
|
"rust-analyzer.cargo.runBuildScripts": true,
|
|
"rust-analyzer.checkOnSave.allTargets": false,
|
|
"rust-analyzer.files.excludeDirs": ["node_modules"],
|
|
"rust-analyzer.procMacro.enable": true,
|
|
// this formats 'use' blocks in a nicer way, but requires you to run
|
|
// 'rustup install nightly'.
|
|
"rust-analyzer.rustfmt.extraArgs": ["+nightly"]
|
|
}
|