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 9fc2673 commit e84e236Copy full SHA for e84e236
.github/workflows/validate-markdown.yaml
@@ -29,4 +29,6 @@ jobs:
29
node-version: '20.x'
30
- name: Validate markdown
31
run: npx --yes mdv versions/3.*.md
32
+ - name: Lint markdown v3.2.*
33
+ run: npx --yes markdownlint-cli --config versions/.markdownlint.yaml versions/3.2.*.md
34
versions/.markdownlint.yaml
@@ -0,0 +1,16 @@
1
+ # Unordered list symbol
2
+ MD004:
3
+ style: asterisk
4
+
5
+ # Unordered list indentation
6
+ MD007:
7
+ indent: 2
8
9
+ MD012: false # allow blank lines
10
11
+ MD013:
12
+ line_length: 800
13
+ tables: false
14
15
+ MD024: false # duplicate headings
16
+ MD033: false # inline HTML
0 commit comments