Skip to content

Commit 780dee1

Browse files
ci: markdown linter
1 parent b40238b commit 780dee1

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"aaron-bond.better-comments",
44
"charliermarsh.ruff",
55
"codezombiech.gitignore",
6+
"DavidAnson.vscode-markdownlint",
67
"eamodio.gitlens",
78
"EditorConfig.EditorConfig",
89
"foxundermoon.shell-format",

.vscode/settings.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,15 @@
1515
// https://github.com/astral-sh/ruff-vscode
1616
"python.analysis.ignore": [
1717
"*"
18-
]
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+
},
1929
}

0 commit comments

Comments
 (0)