📁 files(nvim): markdownlint config file now uses jsonc instead of json

This commit is contained in:
Sergio Laín 2024-08-21 23:14:49 +02:00
parent a825281acc
commit 0b1998b429
No known key found for this signature in database
GPG key ID: 8429B2EE312F8150

View file

@ -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,
} }