diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index ed6faccf..d1855480 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -9,7 +9,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Lint files - uses: nosborn/github-action-markdown-cli@v1.1.1 + uses: articulate/actions-markdownlint@v1 with: files: . - config_file: "docs/.markdownlint.json" + config: .markdownlint.yaml diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 00000000..77f924f2 --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,5 @@ +MD024: false +MD014: false +MD038: false +line-length: + line_length: 120 diff --git a/.markdownlintignore b/.markdownlintignore new file mode 100644 index 00000000..c2658d7d --- /dev/null +++ b/.markdownlintignore @@ -0,0 +1 @@ +node_modules/ diff --git a/docs/.markdownlint.json b/docs/.markdownlint.json deleted file mode 100644 index 6e3aa566..00000000 --- a/docs/.markdownlint.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "MD024": false, - "MD014": false, - "MD038": false, - "line-length": { - "line_length": 120 - } -}