-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy path.markdownlint-cli2.yaml
More file actions
39 lines (31 loc) · 1.31 KB
/
.markdownlint-cli2.yaml
File metadata and controls
39 lines (31 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# markdownlint-cli2 configuration
# https://github.com/DavidAnson/markdownlint-cli2
# Run: npx markdownlint-cli2 "**/*.md"
# Fix: npx markdownlint-cli2 --fix "**/*.md"
config:
# ============================================================
# PERMANENTLY DISABLED — conflict with project documentation style
# ============================================================
# Line-length — long URLs, tables, code examples, ASCII diagrams
MD013: false
# Inline HTML — <img> tags for screenshots/badges in README
MD033: false
# Duplicate headings — section names repeat across platform guides
MD024: false
# Emphasis as heading — bold text used as sub-labels in lists
MD036: false
# ============================================================
# STYLE SETTINGS
# ============================================================
# Tables must use aligned column style (pipes vertically aligned)
MD060:
style: "aligned"
# Ignore generated/vendored/test fixture files
ignores:
- "node_modules/**"
- ".claude/**"
- "scripts/aidlc-evaluator/test_cases/**"
# CHANGELOG.md is auto-generated by git-cliff (cliff.toml controls its format).
# git-cliff postprocessors run per-body so inter-body spacing and trailing
# whitespace cannot be fully controlled via template alone.
- "CHANGELOG.md"