aboutsummaryrefslogtreecommitdiff
path: root/.zed/settings.json
blob: 23f435dda61c6227ef25d53aa5e5d588dd73a00b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "lsp": {
    "rust-analyzer": {
      "initialization_options": {
        "checkOnSave": true,
        "check": { "command": "clippy" },
        "files": {
          "exclude": ["**/target/**", "**/.temp/**"],
        },
        "linkedProjects": ["tools/tscn-to-bsn/Cargo.toml"],
        "cargo": {
          "features": [],
        },
        "procMacro": {
          "enable": true,
          "attributes": {
            "enable": true,
          },
        },
      },
    },
  },
}