From 80a170f8d26d9690401d2b814b1418c59b202bd6 Mon Sep 17 00:00:00 2001 From: Gregor Zeitlinger Date: Fri, 13 Mar 2026 11:18:10 +0000 Subject: [PATCH 1/4] fix: align markdownlint config with super-linter defaults Native mode uses the project root .markdownlint.json, but it was missing the MD013 (line-length) and MD033 (inline-html) overrides that super-linter's container mode applies via its default template. Match the template: set MD013 line_length to 400 and disable MD033. Signed-off-by: Gregor Zeitlinger --- .markdownlint.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.markdownlint.json b/.markdownlint.json index 770a96b..78e836c 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,4 +1,6 @@ { + "MD013": { "line_length": 400 }, + "MD033": false, "MD041": false, "MD060": false } From 126cb80b6b435f2f4ed668e517065a6cfda4a107 Mon Sep 17 00:00:00 2001 From: Gregor Zeitlinger Date: Fri, 13 Mar 2026 11:21:38 +0000 Subject: [PATCH 2/4] =?UTF-8?q?disable=20MD013=20entirely=20=E2=80=94=20ed?= =?UTF-8?q?itorconfig=20handles=20line=20length=20Signed-off-by:=20Gregor?= =?UTF-8?q?=20Zeitlinger=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .markdownlint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.markdownlint.json b/.markdownlint.json index 78e836c..8f0a6aa 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,5 +1,5 @@ { - "MD013": { "line_length": 400 }, + "MD013": false, "MD033": false, "MD041": false, "MD060": false From 8b8dcb89ae51ff67d401f1802f4fab58f6d7ee21 Mon Sep 17 00:00:00 2001 From: Gregor Zeitlinger Date: Fri, 13 Mar 2026 11:24:08 +0000 Subject: [PATCH 3/4] use inline markdownlint disables for badge HTML instead of global suppression Re-enable MD033 (no-inline-html) and MD041 (first-line-heading) globally so they catch issues elsewhere. Only the badge block at the top of README.md gets an inline disable. Signed-off-by: Gregor Zeitlinger --- .markdownlint.json | 2 -- README.md | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.markdownlint.json b/.markdownlint.json index 8f0a6aa..843810b 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,6 +1,4 @@ { "MD013": false, - "MD033": false, - "MD041": false, "MD060": false } diff --git a/README.md b/README.md index e1a28df..2ef105c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ +

flint logo

@@ -9,6 +10,7 @@ Lint GitHub Release

+ A toolbox of reusable [mise](https://mise.jdx.dev/) lint task scripts. From 32ebdbf037c2a79d12960061360527c19af6edc5 Mon Sep 17 00:00:00 2001 From: Gregor Zeitlinger Date: Fri, 13 Mar 2026 11:26:42 +0000 Subject: [PATCH 4/4] =?UTF-8?q?re-enable=20MD060=20=E2=80=94=20tables=20al?= =?UTF-8?q?ready=20comply=20Signed-off-by:=20Gregor=20Zeitlinger=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .markdownlint.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.markdownlint.json b/.markdownlint.json index 843810b..87e137e 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,4 +1,3 @@ { - "MD013": false, - "MD060": false + "MD013": false }