From 5b410827fc0727119b4c70a55e53bea7e18b74ff Mon Sep 17 00:00:00 2001 From: Konstantinos Smanis Date: Sun, 20 Oct 2024 15:53:30 +0300 Subject: [PATCH] build(pre-commit/markdownlint): migrate to JSON configuration --- .markdownlint.json | 6 ++++++ .markdownlint.yml | 5 ----- 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 .markdownlint.json delete mode 100644 .markdownlint.yml diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..b0863fb --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,6 @@ +{ + "line-length": { + "code_blocks": false + }, + "no-duplicate-heading": false +} diff --git a/.markdownlint.yml b/.markdownlint.yml deleted file mode 100644 index 2ce0221..0000000 --- a/.markdownlint.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -line_length: - code_blocks: false -no-duplicate-heading: - siblings_only: true