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.
0 parents commit ea915ffCopy full SHA for ea915ff
.vscode/settings.json
@@ -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