-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsafehaven.code-workspace
49 lines (49 loc) · 1.05 KB
/
safehaven.code-workspace
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"extensions": {
"recommendations": [
"bbenoist.nix", // Nix highlighting
"alejandra.alejandra", // Nix formatting
"dbaeumer.vscode-eslint", // ESLint
"rust-lang.rust-analyzer", // Rust
"vue.volar", // Vue
"mkhl.direnv", // DirEnv for loading flake
]
},
"folders": [
{
"path": "."
}
],
"settings": {
"eslint.useFlatConfig": true,
"alejandra.program": "alejandra",
"[nix]": {
"editor.defaultFormatter": "kamadorueda.alejandra",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": false
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true,
},
"[vue]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
},
},
"[javascript]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
},
},
"[typescript]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
},
}
}
}