diff --git a/.config/nvim/rules/.markdownlint.json b/.config/nvim/rules/.markdownlint.jsonc similarity index 74% rename from .config/nvim/rules/.markdownlint.json rename to .config/nvim/rules/.markdownlint.jsonc index 774b9ede..548f000e 100644 --- a/.config/nvim/rules/.markdownlint.json +++ b/.config/nvim/rules/.markdownlint.jsonc @@ -1,23 +1,23 @@ { "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json", "blanks-around-headings": { - "lines_below": 0 + "lines_below": 0, }, "ul-style": { - "style": "sublist" + "style": "sublist", }, "ol-prefix": { - "style": "ordered" + "style": "ordered", }, "line-length": { "tables": false, - "code_blocks": false + "code_blocks": false, }, "no-inline-html": { - "allowed_elements": ["div", "img", "details", "summary", "kbd", "a", "br"] + "allowed_elements": ["div", "img", "details", "summary", "kbd", "a", "br"], }, "ul-indent": false, "no-hard-tabs": false, "blanks-around-lists": false, - "first-line-heading": false + "first-line-heading": false, }