-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
31 lines (31 loc) · 913 Bytes
/
.markdownlint-cli2.jsonc
File metadata and controls
31 lines (31 loc) · 913 Bytes
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
// Markdown linting configuration for Shadowforge
{
"config": {
// Line length - allow longer lines for code and tables
"MD013": {
"line_length": 120,
"code_blocks": false,
"tables": false
},
// Multiple headings with the same content - allow for documentation
"MD024": false,
// Fenced code blocks should have a language - require language
"MD040": true,
// First line in file should be a top-level heading - not required
"MD041": false,
// Emphasis used instead of a heading - allow for emphasis blocks
"MD036": false,
// Table column style - be lenient
"MD060": false,
"MD033": false
},
"globs": [
".github/**/*.md"
],
"ignores": [
"**/node_modules/**",
"**/vendor/**",
"**/.git/**",
"docs/**"
]
}