generated from edwardtheharris/ansible-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint-cli2.yaml
56 lines (54 loc) · 1.16 KB
/
.markdownlint-cli2.yaml
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
55
56
###
# ```{rubric} MarkdownLint Configuration
# ```
# ---
# An example .markdownlint-cli2.yaml file
#
# Disable some built-in rules
config:
no-multiple-blanks: true
no-trailing-spaces: true
# Include a custom rule package
# customRules:
# - markdownlint-rule-titlecase
# Fix any fixable errors
fix: true
###
# Define a custom front matter pattern
# frontMatter: "<head>[^]*<\/head>"
#
# Ignore files referenced by .gitignore (only valid at root)
gitignore: true
###
# Define glob expressions to use (only valid at root)
globs:
- "#.venv"
###
# Define glob expressions to ignore
ignores:
- "ignore*.md"
###
# Use a plugin to recognize math
# markdownItPlugins:
# -
# - "@iktakahiro/markdown-it-katex"
#
# Additional paths to resolve module locations from
modulePaths:
- "./modules"
###
# Disable banner message on stdout (only valid at root)
noBanner: false
###
# Disable inline config comments
noInlineConfig: false
###
# Disable progress on stdout (only valid at root)
noProgress: false
###
# Use a specific formatter (only valid at root)
outputFormatters:
- - markdownlint-cli2-formatter-junit
###
# Show found files on stdout (only valid at root)
showFound: true