We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5d3dac commit 15c7468Copy full SHA for 15c7468
.github/workflows/markdownlint.yml
@@ -0,0 +1,25 @@
1
+name: Markdown Lint
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - '**/*.md'
7
8
+jobs:
9
+ markdownlint:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repo
14
+ uses: actions/checkout@v3
15
16
+ - name: Set up Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '18'
20
21
+ - name: Install markdownlint-cli
22
+ run: npm install -g markdownlint-cli
23
24
+ - name: Run markdownlint
25
+ run: markdownlint '**/*.md' --ignore node_modules
.markdownlint.json
@@ -0,0 +1,5 @@
+{
+ "default": true,
+ "MD013": false,
+ "MD033": false
+}
0 commit comments