📁 files(nvim): markdownlint config file now uses jsonc instead of json
This commit is contained in:
parent
a825281acc
commit
0b1998b429
1 changed files with 6 additions and 6 deletions
|
@ -1,23 +1,23 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json",
|
"$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json",
|
||||||
"blanks-around-headings": {
|
"blanks-around-headings": {
|
||||||
"lines_below": 0
|
"lines_below": 0,
|
||||||
},
|
},
|
||||||
"ul-style": {
|
"ul-style": {
|
||||||
"style": "sublist"
|
"style": "sublist",
|
||||||
},
|
},
|
||||||
"ol-prefix": {
|
"ol-prefix": {
|
||||||
"style": "ordered"
|
"style": "ordered",
|
||||||
},
|
},
|
||||||
"line-length": {
|
"line-length": {
|
||||||
"tables": false,
|
"tables": false,
|
||||||
"code_blocks": false
|
"code_blocks": false,
|
||||||
},
|
},
|
||||||
"no-inline-html": {
|
"no-inline-html": {
|
||||||
"allowed_elements": ["div", "img", "details", "summary", "kbd", "a", "br"]
|
"allowed_elements": ["div", "img", "details", "summary", "kbd", "a", "br"],
|
||||||
},
|
},
|
||||||
"ul-indent": false,
|
"ul-indent": false,
|
||||||
"no-hard-tabs": false,
|
"no-hard-tabs": false,
|
||||||
"blanks-around-lists": false,
|
"blanks-around-lists": false,
|
||||||
"first-line-heading": false
|
"first-line-heading": false,
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue