Skip to content

Commit 5cfe5bb

Browse files
committed
feat(extension): add DavidAnson.vscode-markdownlint extension
1 parent 0e7314d commit 5cfe5bb

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.editorconfig

+5
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ indent_style = space
2626
[*.{.sh}]
2727
indent_style = tab
2828
indent_size = 4
29+
30+
# MARKDOWN Files
31+
[*.{md}]
32+
indent_style = space
33+
indent_size = 4

.markdownlint.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"MD013": false,
3+
"MD030": {
4+
"ul_single": 3,
5+
"ol_single": 1,
6+
"ul_multi": 3,
7+
"ol_multi": 1
8+
}
9+
}

.vscode/extensions.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"ms-python.python",
44
"editorconfig.editorconfig",
55
"yzhang.markdown-all-in-one",
6+
"DavidAnson.vscode-markdownlint",
67
"esbenp.prettier-vscode",
78
"timonwong.shellcheck",
89
"redhat.vscode-yaml"

0 commit comments

Comments
 (0)