We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b40238b commit 780dee1Copy full SHA for 780dee1
.vscode/extensions.json
@@ -3,6 +3,7 @@
3
"aaron-bond.better-comments",
4
"charliermarsh.ruff",
5
"codezombiech.gitignore",
6
+ "DavidAnson.vscode-markdownlint",
7
"eamodio.gitlens",
8
"EditorConfig.EditorConfig",
9
"foxundermoon.shell-format",
.vscode/settings.json
@@ -15,5 +15,15 @@
15
// https://github.com/astral-sh/ruff-vscode
16
"python.analysis.ignore": [
17
"*"
18
- ]
+ ],
19
+ "[markdown]": {
20
+ "editor.formatOnSave": true,
21
+ "editor.quickSuggestions": {
22
+ "comments": "off",
23
+ "strings": "off",
24
+ "other": "off"
25
+ },
26
+ "files.trimTrailingWhitespace": false,
27
+ "editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
28
29
}
0 commit comments