From 5d79de0dbdb82526735aff83319c609bc28d85f2 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sun, 20 Jun 2021 00:28:44 +0200 Subject: [PATCH] Added: Ignore MD041 The reason why I ignore this is to make it easier for me to make use of Snippets (insert content from other files) for easier maintance --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b4c35890b..57c6017a0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v2 - name: markdownlint run: | - find ~+ ${github_workspace} -name '*.md' | xargs docker run --rm -v ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} markdownlint/markdownlint -r ~MD013,~MD033,~MD034,~MD046,~MD002 + find ~+ ${github_workspace} -name '*.md' | xargs docker run --rm -v ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} markdownlint/markdownlint -r ~MD013,~MD033,~MD034,~MD046,~MD002,~MD041 yamllint: runs-on: ubuntu-latest