blob: 7378109beb70e682a17310bc0efcdfd3746317f1 (
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
24
25
26
27
28
29
|
{
"lsp": {
"rust-analyzer": {
"initialization_options": {
"checkOnSave": true,
"check": { "command": "clippy" },
"files": {
"exclude": ["**/target/**", "**/.temp/**"]
},
"linkedProjects": [
".run/Cargo.toml",
"mingling_pathf/test/Cargo.toml",
"arg_picker/Cargo.toml",
"arg_picker/test/Cargo.toml",
"mingling_cli/Cargo.toml"
],
"cargo": {
"features": []
},
"procMacro": {
"enable": true,
"attributes": {
"enable": true
}
}
}
}
}
}
|