From 0b1998b42996d4fc8916fb3ce29fc1ca5a1f63c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Wed, 21 Aug 2024 23:14:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=81=20files(nvim):=20markdownlint=20co?= =?UTF-8?q?nfig=20file=20now=20uses=20jsonc=20instead=20of=20json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../{.markdownlint.json => .markdownlint.jsonc} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename .config/nvim/rules/{.markdownlint.json => .markdownlint.jsonc} (74%) 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, }