-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathsettings.json
More file actions
42 lines (42 loc) · 1.12 KB
/
settings.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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
{
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"notebook.formatOnSave.enabled": false,
"notebook.codeActionsOnSave": {
"notebook.source.organizeImports": "explicit"
},
"pylint.enabled": false,
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[r]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Posit.air-vscode"
},
"[quarto]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "quarto.quarto"
},
"[html]": {
"editor.formatOnSave": false
},
"[toml]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"deno.enable": true,
"deno.lint": true,
"deno.unstable": true,
"deno.importMap": "./src/import_map.json",
"deno.disablePaths": ["tests/integration/playwright/"],
// opt-out lintr as we use air formatter
"r.lsp.diagnostics": false
}