- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.code-workspace
More file actions
Latest commit
27 lines (27 loc) · 1.05 KB
/
Copy pathBlog.code-workspace
File metadata and controls
27 lines (27 loc) · 1.05 KB
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
// Standard workspace fragment carried by every fleet repo (catalog/snippets/vscode/base.jsonc,
// https://github.com/ptr727/ProjectTemplate/blob/main/catalog/snippets/vscode/README.md).
// This repo ships no dotnet/python/docker target, so it carries base.jsonc only.
{
"folders": [{ "path": "." }],
"settings": {
"markdown.extension.toc.levels": "2..3",
"files.trimTrailingWhitespace": true,
"[markdown]": { "files.trimTrailingWhitespace": false },
"[plaintext]": { "files.trimTrailingWhitespace": false },
"files.encoding": "utf8",
"git.alwaysSignOff": true
},
"extensions": {
"recommendations": [
"anthropic.claude-code",
"arahata.linter-actionlint",
"davidanson.vscode-markdownlint",
"editorconfig.editorconfig",
"fanaticpythoner.better-todo-tree",
"github.vscode-github-actions",
"streetsidesoftware.code-spell-checker",
"timonwong.shellcheck",
"yzhang.markdown-all-in-one"
]
}
}