summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 94e2ea4c7a2ee17a932afb33ae2701522ead6747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "editor.formatOnSave": true,
  "rust-analyzer.cargo.allFeatures": false,
  "rust-analyzer.checkOnSave.allFeatures": false,
  "rust-analyzer.cargo.target": "thumbv7em-none-eabihf",
  "rust-analyzer.checkOnSave.allTargets": false,
  "rust-analyzer.procMacro.enable": true,
  "rust-analyzer.linkedProjects": [
    "examples/Cargo.toml"
  ],
  "files.watcherExclude": {
    "**/.git/objects/**": true,
    "**/.git/subtree-cache/**": true,
    "**/target/**": true,
  },
  "rust-analyzer.imports.granularity.group": "module",
  "rust-analyzer.cargo.buildScripts.enable": true,
  "rust-analyzer.procMacro.attributes.enable": false,
}