-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy path.markdownlint-cli2.yaml
More file actions
38 lines (28 loc) · 1.14 KB
/
.markdownlint-cli2.yaml
File metadata and controls
38 lines (28 loc) · 1.14 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
# This is the configuration for markdownlint-cli2.
# See https://github.com/DavidAnson/markdownlint-cli2#configuration for details.
# Fix any fixable errors
fix: false
# Rules description can be found at https://github.com/DavidAnson/markdownlint/blob/HEAD/doc/Rules.md
config:
# Default state for all rules
default: true
# MD010/no-hard-tabs : Hard tabs : https://github.com/DavidAnson/markdownlint/blob/HEAD/doc/md010.md
MD010:
code_blocks: false
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/HEAD/doc/md013.md
MD013:
line_length: 150
code_block_line_length: 200
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/HEAD/doc/md033.md
MD033: false
# MD055/table-pipe-style : Table pipe style : https://github.com/DavidAnson/markdownlint/blob/HEAD/doc/md055.md
MD055: false
# MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/HEAD/doc/md060.md
MD060: false
# Define glob expressions to use
globs:
- "*.md"
# Disable banner message on stdout
noBanner: true
# Show found files on stdout
showFound: true