From 4c392261d9447213fadce3615a16441cba50acf7 Mon Sep 17 00:00:00 2001 From: Alexander Mescheryakov Date: Wed, 19 Jun 2024 12:22:33 +0200 Subject: [PATCH] disable markdown lint --- .github/workflows/archived_lint-checks.yaml | 26 ++++++++++----------- .markdownlint.yaml | 10 ++++++++ 2 files changed, 23 insertions(+), 13 deletions(-) create mode 100644 .markdownlint.yaml diff --git a/.github/workflows/archived_lint-checks.yaml b/.github/workflows/archived_lint-checks.yaml index c680e6f..a187a60 100644 --- a/.github/workflows/archived_lint-checks.yaml +++ b/.github/workflows/archived_lint-checks.yaml @@ -50,16 +50,16 @@ jobs: fi done -# markdownlint: -# runs-on: ubuntu-latest -# steps: -# - name: â†Šī¸ Checkout -# uses: actions/checkout@v4 -# with: -# # Full git history is needed to get a proper list of changed files within `super-linter` -# fetch-depth: 0 -# -# - name: 🔎 Run markdownlint -# uses: nosborn/github-action-markdown-cli@v3.3.0 -# with: -# config_file: .markdownlint.yaml + markdownlint: + runs-on: ubuntu-latest + steps: + - name: â†Šī¸ Checkout + uses: actions/checkout@v4 + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + + - name: 🔎 Run markdownlint + uses: nosborn/github-action-markdown-cli@v3.3.0 + with: + config_file: .markdownlint.yaml diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 0000000..d51a61b --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,10 @@ +default: true +MD001: false # Heading levels should only increment by one level at a time +MD002: false # First header should be a h1 header +MD007: # Unordered list indentation + indent: 2 +MD012: false # Multiple consecutive blank lines +MD013: false # Line length +MD025: false # Multiple top level headings in the same document +MD033: false # No Inline html +MD041: false # First line in file should be a top level header