Skip to content

Commit ea915ff

Browse files
committed
feat: add vscode setting
0 parents  commit ea915ff

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.vscode/settings.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
// Qiita theme
4+
"editor.background": "#fff",
5+
"statusBar.background": "#56C501",
6+
"sideBar.background": "#F5F6F6"
7+
},
8+
"markdownlint.config": {
9+
"line-length": {
10+
// MD013: Adjust the maximum number of characters per sentence
11+
"line_length": 120
12+
},
13+
"no-duplicate-heading": false, // MD024: Allow duplicate heading text
14+
"no-trailing-punctuation": false, // MD026: Allow headings with . ,;:
15+
"no-inline-html": false, // MD033: Allow HTML description
16+
"no-bare-urls": false // MD034: Allow URLs to be written as is
17+
}
18+
}

0 commit comments

Comments
 (0)