We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14bff02 commit f95e91aCopy full SHA for f95e91a
.github/markdownlint-config.json
@@ -0,0 +1,7 @@
1
+{
2
+ "default": true,
3
+ "MD013": false,
4
+ "MD041": false,
5
+ "MD014": false,
6
+ "MD024": false
7
+}
.github/workflows/markdownlint.yml
@@ -0,0 +1,21 @@
+---
+name: markdownlint
+
+on:
+ pull_request:
+ push:
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ markdownlint:
13
+ name: Check for Markdown errors
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: articulate/actions-markdownlint@v1
19
+ with:
20
+ config: .github/markdownlint-config.json
21
+ files: './*.md'
0 commit comments