forked from quarto-dev/quarto-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quarto-cli.code-workspace
39 lines (39 loc) · 1.13 KB
/
quarto-cli.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.tabSize": 2,
"debug.javascript.unmapMissingSources": true,
"julia.format.indent": 2,
"julia.format.indents": false,
"deno.importMap": "./src/dev_import_map.json",
"deno.lint": true,
"deno.enable": true,
"deno.unstable": true,
"deno.path": "./package/dist/bin/tools/deno",
"deno.suggest.imports.hosts": {
"https://deno.land": true,
"https://den.o.land": false
},
"quarto.path": "./package/dist/bin/quarto",
"files.associations": {
"*.ejs.md": "ejs",
"*.ejs.yml": "ejs",
"*.ejs.html": "ejs",
"*.ejs.js": "ejs"
},
"[ejs]": {
"editor.formatOnSave": false
},
"deno.inlayHints.enumMemberValues.enabled": false,
"deno.inlayHints.functionLikeReturnTypes.enabled": false,
"deno.inlayHints.parameterNames.enabled": "none",
"deno.inlayHints.parameterTypes.enabled": false,
"deno.inlayHints.propertyDeclarationTypes.enabled": false,
"deno.inlayHints.variableTypes.enabled": false,
"deno.inlayHints.variableTypes.suppressWhenTypeMatchesName": false
}
}