Skip to content

Commit d8285a5

Browse files
feat: add vscode mdx formatting ext
1 parent 6fd14ca commit d8285a5

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.vscode/extensions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"unifiedjs.vscode-mdx",
4+
"yzhang.markdown-all-in-one"
5+
]
6+
}

.vscode/settings.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"files.associations": {
3+
"*.mdx": "mdx"
4+
},
5+
"[mdx]": {
6+
"editor.defaultFormatter": "unifiedjs.vscode-mdx",
7+
"editor.formatOnSave": false,
8+
"editor.wordWrap": "on",
9+
"editor.quickSuggestions": {
10+
"comments": "on",
11+
"strings": "on",
12+
"other": "on"
13+
}
14+
},
15+
"[markdown]": {
16+
"editor.defaultFormatter": "yzhang.markdown-all-in-one",
17+
"editor.wordWrap": "on"
18+
}
19+
}
20+

0 commit comments

Comments
 (0)