forked from openshift/enhancements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint-cli2.yaml
56 lines (43 loc) · 1.7 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
# See https://github.com/DavidAnson/markdownlint#optionsconfig
# and https://github.com/DavidAnson/markdownlint-cli2
config:
# forematter metadata seems to trigger this
single-title: false
# hard tabs are used when pasting go example code into files
no-hard-tabs: false
# we commonly paste bare urls in the middle of paragraphs
no-bare-urls: false
# really, this is a rule?
commands-show-output: false
# We like to use really long lines
line-length:
line_length: 400
# Sometimes we repeat headings, and it's easier to just turn those
# into emphasis
no-emphasis-as-heading: false
# We only publish HTML, so allow all HTML inline.
no-inline-html: false
## Rules we may want to turn on later, but that will require editing
## existing files:
# We tend to use `*` instead of `-` for list bullets but we aren't
# consistent, even within a single file. Ideally we would want
# `style: consistent`
ul-style: false
# We have at least one # document that breaks up a numbered list
# with headings. Ideally we would set `style: one_or_ordered`.
ol-prefix: false
# Vertical whitespace helps the reader, so we should turn these on
# again when someone has time to fix our existing files.
blanks-around-fences: false
blanks-around-headings: false
blanks-around-lists: false
single-trailing-newline: false
no-multiple-blanks: false
# Trailing spaces don't cause any known issues and are often introduced when
# updating text to conform to max line length restrictions.
no-trailing-spaces: false
# Rules present in newer markdownlint versions that fail across almost all
# existing documents
emphasis-style: false
strong-style: false
no-space-in-emphasis: false