forked from tylerbutler/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
43 lines (39 loc) · 1.25 KB
/
settings.json
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
{
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"typescript.tsdk": "node_modules/typescript/lib",
// Autodetecting tasks on a repo this size makes 'Tasks: Run Build Task' unusably slow.
// (See https://github.com/Microsoft/vscode/issues/34387)
"typescript.tsc.autoDetect": "off",
"npm.autoDetect": "off",
"files.associations": {
"tools/pipelines/*.yml": "azure-pipelines",
// good-fences' fence files support comments, so detect them as "jsonc" instead of "json":
"fence.json": "jsonc",
".git-blame-ignore-revs": "ignore"
},
"[azure-pipelines].customSchemaFile": "",
"deno.enable": false,
"deno.lint": false,
"deno.unstable": false,
// Custom dictionary for 'streetsidesoftware.code-spell-checker' extension.
"cSpell.words": [
"endregion",
"injective",
"losslessly",
"mitigations",
"multinomial",
"nonfinite",
"pseudorandomly",
"Tinylicious",
"tombstoned",
"TSDoc",
"unaugmented"
],
// Enable prettier as default formatter, and disable rules that disagree with it
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.insertSpaces": false
}