Skip to content
This repository was archived by the owner on Feb 27, 2025. It is now read-only.

Commit 22704e3

Browse files
committed
Ignore some markdown rules
1 parent bf63ed2 commit 22704e3

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131

3232
- name: Build commandapi-documentation-code
3333
run: cd commandapi-documentation-code && ./gradlew build
34-
34+
3535
- name: Build commandapi-documentation-velocity-code
3636
run: cd commandapi-documentation-velocity-code && ./gradlew build

.markdownlint-cli2.yaml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
ignores:
2+
- "**/SUMMARY.md"
3+
- CODE_OF_CONDUCT.md
4+
- "docs/**"
5+
- ".github/**"
6+
- README.md
7+
8+
noProgress: true
9+
10+
config:
11+
# Default state for all rules
12+
default: true
13+
14+
# MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time
15+
MD001: false
16+
17+
# MD013/line-length - Line length
18+
MD013: false
19+
20+
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
21+
MD024:
22+
# Allow different nesting
23+
allow_different_nesting: true
24+
# Only check sibling headings
25+
siblings_only: false
26+
27+
# MD033/no-inline-html - Inline HTML
28+
MD033: false
29+
30+
# MD034/no-bare-urls - Bare URL used
31+
MD034: false
32+
33+
# MD036/no-emphasis-as-heading/no-emphasis-as-header - We need certain headings that aren't anchored
34+
MD036: false

0 commit comments

Comments
 (0)