reconcile/.vscode/settings.json

15 lines
No EOL
430 B
JSON

{
"files.exclude": {
"**/snapshots": true, // cargo-insta outputs
"**/node_modules": true, // node.js dependencies
"**/dist": true, // webpack build directory
"pkg": true, // wasm-pack build directory
"target": true, // rust build directory
},
"rust-analyzer.cargo.features": [
"all"
],
"python.analysis.extraPaths": [
"./reconcile-python/python"
]
}