We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 448b31a commit 0a17732Copy full SHA for 0a17732
.github/workflows/markdown.yml
@@ -0,0 +1,32 @@
1
+name: Markdown CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ paths:
8
+ - ".github/workflows/*"
9
+ - ".markdownlint.jsonc"
10
+ - "**/*.md"
11
+ pull_request:
12
13
14
15
16
17
18
19
+jobs:
20
+ lint:
21
+ runs-on: ubuntu-latest
22
23
+ steps:
24
+ - name: Checkout code
25
+ uses: actions/checkout@v4
26
27
+ - name: markdownlint-cli
28
+ uses: nosborn/[email protected]
29
+ with:
30
+ files: "*.md"
31
+ config_file: .markdownlint.jsonc
32
+ dot: true
.markdownlint.jsonc
@@ -1,4 +1,7 @@
{
+ // I can set heading levels at my discretion!
+ "MD001": false,
// Style of unordered lists..
"MD007": {
"indent": 2,
0 commit comments