Skip to content

Commit e7ffd44

Browse files
darksun27ljharb
authored andcommitted
Update .markdownlint.json
Fixed typos and grammar
1 parent 17e0454 commit e7ffd44

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

linters/.markdownlint.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"comment": "Be explicit by listing every available rule. https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md",
33
"comment": "Note that there will be numeric gaps, not every MD number is implemented in markdownlint.",
44

5-
"comment": "MD001: Header levels should only increment by one level at a time",
5+
"comment": "MD001: Header levels should only increment by one level at a time.",
66
"header-increment": true,
77

8-
"comment": "MD002: First header should be a top level header",
8+
"comment": "MD002: First header should be a top level header.",
99
"first-header-h1": true,
1010

11-
"comment": "MD003: Header style: start with hashes",
11+
"comment": "MD003: Header style: start with hashes.",
1212
"header-style": {
1313
"style": "atx"
1414
},
@@ -18,71 +18,71 @@
1818
"style": "dash"
1919
},
2020

21-
"comment": "MD005: Consistent indentation for list items at the same level",
21+
"comment": "MD005: Consistent indentation for list items at the same level.",
2222
"list-indent": true,
2323

24-
"comment": "MD006: Consider starting bulleted lists at the beginning of the line",
24+
"comment": "MD006: Consider starting bulleted lists at the beginning of the line.",
2525
"ul-start-left": false,
2626

27-
"comment": "MD007: Unordered list indentation: 2 spaces",
27+
"comment": "MD007: Unordered list indentation: 2 spaces.",
2828
"ul-indent": {
2929
"indent": 2
3030
},
3131

32-
"comment": "MD009: Disallow trailing spaces",
32+
"comment": "MD009: Disallow trailing spaces!",
3333
"no-trailing-spaces": {
3434
"br_spaces": 0,
35-
"comment": "Empty lines inside list items should not be indented",
35+
"comment": "Empty lines inside list items should not be indented.",
3636
"list_item_empty_lines": false
3737
},
3838

39-
"comment": "MD010: No hard tabs, not even in code blocks",
39+
"comment": "MD010: No hard tabs, not even in code blocks.",
4040
"no-hard-tabs": {
4141
"code_blocks": true
4242
},
4343

4444
"comment": "MD011: Prevent reversed link syntax",
4545
"no-reversed-links": true,
4646

47-
"comment": "MD012: Disallow multiple consecutive blank lines",
47+
"comment": "MD012: Disallow multiple consecutive blank lines.",
4848
"no-multiple-blanks": {
4949
"maximum": 1
5050
},
5151

5252
"comment": "MD013: Line length",
5353
"line-length": false,
5454

55-
"comment": "MD014: Disallow dollar signs used before commands without showing output",
55+
"comment": "MD014: Disallow use of dollar signs($) before commands without showing output.",
5656
"commands-show-output": true,
5757

58-
"comment": "MD018: Disallow space after hash on atx style header",
58+
"comment": "MD018: Disallow space after hash on atx style header.",
5959
"no-missing-space-atx": true,
6060

61-
"comment": "MD019: Dissalow multiple spaces after hash on atx style header",
61+
"comment": "MD019: Disallow multiple spaces after hash on atx style header.",
6262
"no-multiple-space-atx": true,
6363

64-
"comment": "MD020: No space inside hashes on closed atx style header",
64+
"comment": "MD020: No space should be inside hashes on closed atx style header.",
6565
"no-missing-space-closed-atx": true,
6666

67-
"comment": "MD021: Disallow multiple spaces inside hashes on closed atx style header",
67+
"comment": "MD021: Disallow multiple spaces inside hashes on closed atx style header.",
6868
"no-multiple-space-closed-atx": true,
6969

70-
"comment": "MD022: Headers should be surrounded by blank lines",
70+
"comment": "MD022: Headers should be surrounded by blank lines.",
7171
"comment": "Some headers have preceeding HTML anchors. Unfortunate that we have to disable this, as it otherwise catches a real problem that trips up some Markdown renderers",
7272
"blanks-around-headers": false,
7373

74-
"comment": "MD023: Headers must start at the beginning of the line",
74+
"comment": "MD023: Headers must start at the beginning of the line.",
7575
"header-start-left": true,
7676

77-
"comment": "MD024: Disallow multiple headers with the same content",
77+
"comment": "MD024: Disallow multiple headers with the same content.",
7878
"no-duplicate-header": true,
7979

80-
"comment": "MD025: Disallow multiple top level headers in the same document",
81-
"comment": "Gotta have a matching closing brace at the end",
80+
"comment": "MD025: Disallow multiple top level headers in the same document.",
81+
"comment": "Gotta have a matching closing brace at the end.",
8282
"single-h1": false,
8383

84-
"comment": "MD026: Disallow trailing punctuation in header",
85-
"comment": "Gotta have a semicolon after the ending closing brace",
84+
"comment": "MD026: Disallow trailing punctuation in header.",
85+
"comment": "You must have a semicolon after the ending closing brace.",
8686
"no-trailing-punctuation": {
8787
"punctuation" : ".,:!?"
8888
},
@@ -117,38 +117,38 @@
117117
"comment": "HTML is needed for explicit anchors",
118118
"no-inline-html": false,
119119

120-
"comment": "MD034: No bare URLs used",
120+
"comment": "MD034: No bare URLs should be used",
121121
"no-bare-urls": true,
122122

123123
"comment": "MD035: Horizontal rule style",
124124
"hr-style": {
125125
"style": "consistent"
126126
},
127127

128-
"comment": "MD036: Do not use emphasis instead of a header",
128+
"comment": "MD036: Do not use emphasis instead of a header.",
129129
"no-emphasis-as-header": false,
130130

131-
"comment": "MD037: Disallow spaces inside emphasis markers",
131+
"comment": "MD037: Disallow spaces inside emphasis markers.",
132132
"no-space-in-emphasis": true,
133133

134-
"comment": "MD038: Disallow spaces inside code span elements",
134+
"comment": "MD038: Disallow spaces inside code span elements.",
135135
"no-space-in-code": true,
136136

137-
"comment": "MD039: Disallow spaces inside link text",
137+
"comment": "MD039: Disallow spaces inside link text.",
138138
"no-space-in-links": true,
139139

140-
"comment": "MD040: Fenced code blocks should have a language specified",
140+
"comment": "MD040: Fenced code blocks should have a language specified.",
141141
"fenced-code-language": true,
142142

143-
"comment": "MD041: First line in file should be a top level header",
143+
"comment": "MD041: First line in file should be a top level header.",
144144
"first-line-h1": true,
145145

146146
"comment": "MD042: No empty links",
147147
"no-empty-links": true,
148148

149-
"comment": "MD043: Required header structure",
149+
"comment": "MD043: Required header structure.",
150150
"required-headers": false,
151151

152-
"comment": "MD044: Proper names should have the correct capitalization",
152+
"comment": "MD044: Proper names should have the correct capitalization.",
153153
"proper-names": false
154154
}

0 commit comments

Comments
 (0)