From 8613b265d5768cdd7788f7f723b30e89aac873e7 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Thu, 17 Feb 2022 12:09:19 +0800 Subject: [PATCH] lint: skip MD029 and MD036 Skipping: * MD029 Ordered list item prefix * MD036 Emphasis used instead of a header These rules are not fully applied to this repository yet and further discussion is probably needed on how to deal with them. Example markdownlint run: * https://github.com/Anduin2017/HowToCook/runs/5226805159 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b340138b..2d3f1766 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,4 +14,4 @@ jobs: - name: Install packages run: sudo gem install mdl - name: Lint markdown files - run: mdl *.md + run: mdl *.md -r ~MD029,~MD036