1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| {
| "editor.formatOnSave": true,
| "files.autoSave": "afterDelay",
| "files.autoSaveWhenNoErrors": true,
| "files.autoSaveWorkspaceFilesOnly": true,
| "cSpell.customDictionaries": {
| "custom-dictionary-workspace": {
| "name": "custom-dictionary-workspace",
| "path": "${workspaceFolder:gohugo-theme-ananke}/.vscode/custom-dictionary.txt",
| "addWords": true,
| "scope": "workspace"
| }
| },
| "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"
| },
| "window.autoDetectColorScheme": false
| }
|
|