From c7d0807b370246d12220cb0154259b4eb3f9b5a9 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 13 Jun 2025 11:49:46 +0200 Subject: [PATCH] feat(ci): move linting to components --- .markdownlint-cli2.jsonc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .markdownlint-cli2.jsonc diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc new file mode 100644 index 0000000..56cd87c --- /dev/null +++ b/.markdownlint-cli2.jsonc @@ -0,0 +1,12 @@ +{ + // files to lint + "globs": [ + "readme.md" + ], + // linting rules + "config": { + "MD013": { + "line_length": 120 + } + } +}