-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.yml
More file actions
54 lines (39 loc) · 1.12 KB
/
.markdownlint.yml
File metadata and controls
54 lines (39 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Markdown linting configuration for the landing page
extends: default
rules:
# Line length - allow longer lines for landing page content
line-length:
line_length: 120
code_blocks: false
tables: false
headings: false
# Allow HTML in markdown for enhanced styling
no-inline-html: false
# Allow duplicate headings for sections
no-duplicate-heading: false
# First line heading - disabled for front matter
first-line-heading: false
# Allow emphasis markers for styled content
no-emphasis-as-heading: false
# Allow trailing punctuation in headers
no-trailing-punctuation: false
# Blanks around lists - enforce proper spacing
blanks-around-lists: true
# Blanks around fences
blanks-around-fences: true
# No bare URLs
no-bare-urls: true
# Proper link formatting
no-space-in-links: true
# Code block style
fenced-code-language: false
# List marker style
ul-style:
style: dash
# Ordered list markers
ol-prefix:
style: ordered
# No trailing spaces
no-trailing-spaces: true
# Single trailing newline
single-trailing-newline: true