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
| {
| "editor.formatOnSave": true,
| "files.autoSave": "afterDelay",
| "files.autoSaveWhenNoErrors": true,
| "files.autoSaveWorkspaceFilesOnly": true,
| "cSpell.language": "en-GB",
| "cSpell.dictionaryDefinitions": [
| {
| "name": "workspace",
| "path": "./.vscode/custom-dictionary.txt",
| "addWords": true
| }
| ],
| "cSpell.dictionaries": [
| "workspace"
| ],
| "cSpell.enabledFileTypes": {
| "markdown": true,
| "plaintext": true,
| "json": true,
| "yaml": true,
| "yml": true,
| "typescript": true,
| "javascript": true
| },
| "explorer.fileNesting.enabled": true,
| "explorer.fileNesting.patterns": {
| "package.json": "package-lock.json, netlify.toml, .lintstagedrc.js, .release-it.ts, .markdownlint*, .nvmrc, lychee.toml, tsconfig.json, .coderabbit.yaml",
| "theme.toml": "go.mod, go.sum",
| "README.md": "CHANGELOG.md, LICENSE.md, CONTRIBUTING.md, RELEASES.md, DESIGN.md",
| "*.ts": "$(capture).md, $(capture).test.ts, $(capture).spec.ts, $(capture).d.ts, $(capture).map, $(capture).js, $(capture).jsx, $(capture).tsx"
| },
| "window.autoDetectColorScheme": false,
| "markdown.extension.tableFormatter.enabled": false
| }
|
|