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
|
{
"[markdown]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.wordBasedSuggestions": "off"
},
"[mdx]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.wordBasedSuggestions": "off"
},
"[nunjucks]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.wordBasedSuggestions": "off"
},
"deno.enable": true,
"deno.lint": true,
"deno.unstable": true,
"cSpell.enableFiletypes": ["mdx"],
"cSpell.words": [
"bootloader",
"catgirl",
"deno",
"fout",
"gatekeeping",
"gatekeepy",
"XeblogConv"
],
"[markdown][mdx][nunjucks]": {
"editor.wordBasedSuggestions": "off"
},
"protoc": {
"options": ["--proto_path=pb", "--proto_path=internal/adminpb"]
},
"nixEnvSelector.nixFile": "${workspaceFolder}/flake.nix"
}
|