-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint-cli2.yaml
More file actions
45 lines (35 loc) · 937 Bytes
/
.markdownlint-cli2.yaml
File metadata and controls
45 lines (35 loc) · 937 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# .markdownlint-cli2.yaml
# 1) Rules to apply
config:
# max 100 chars, ignore code blocks
line-length:
line_length: 100
ignore_code_blocks: true
# require fenced codeblocks
fenced-code-language:
code_fence_style: fenced
# ATX‐style headings only
heading-style:
style: atx
no-trailing-spaces: true
ul-style:
style: one
blanks-around-headings: true
blanks-around-lists: true
blanks-around-blockquotes: true
# allow inline HTML
MD033: false
# ignore ordered list item prefix rule (MD029)
MD029: false
# 2) Automatically fix fixable errors
fix: true
# 3) Honor your .gitignore
gitignore: true
# 4) Lint all markdown files recursively
globs:
- '**/*.{md,markdown}'
# 5) Ignore patterns - exclude prompts folder, Serena memories, and new frontend docs
ignores:
- 'prompts/**/*.{md,markdown}'
- '.serena/memories/**/*.{md,markdown}'
- 'apps/frontend/src/**/*.{md,markdown}'