Skip to content

Commit d7e3edc

Browse files
ChALkeRMylesBorins
authored andcommitted
tools: add remark-lint configuration in .remarkrc
Specifies the configuration for remark-lint, a markdown linter. This configuration does not cause any warnings on any of the currently present *.md files (ignoring thirdparty). It is useful not only for possible future tooling that would check the markdown files syntax, but also as a configuration for editor plugins, e.g. linter-markdown for atom-linter. Refs: #7637 Refs: #7727 Refs: #7757 PR-URL: #7729 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Robert Jefe Lindstaedt <[email protected]>
1 parent e74daad commit d7e3edc

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.remarkrc

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"plugins": {
3+
"remark-lint": {
4+
"code-block-style": false,
5+
"definition-case": false,
6+
"emphasis-marker": false,
7+
"first-heading-level": false,
8+
"heading-increment": false,
9+
"list-item-content-indent": false,
10+
"list-item-bullet-indent": false,
11+
"list-item-indent": false,
12+
"list-item-spacing": false,
13+
"maximum-heading-length": false,
14+
"maximum-line-length": false,
15+
"no-consecutive-blank-lines": false,
16+
"no-duplicate-headings": false,
17+
"no-emphasis-as-heading": false,
18+
"no-file-name-articles": false,
19+
"no-file-name-irregular-characters": false,
20+
"no-heading-punctuation": false,
21+
"no-html": false,
22+
"no-inline-padding": false,
23+
"no-shell-dollars": false,
24+
"no-shortcut-reference-link": false,
25+
"no-literal-urls": false,
26+
"no-missing-blank-lines": false,
27+
"no-multiple-toplevel-headings": false,
28+
"no-undefined-references": false,
29+
"ordered-list-marker-style": false,
30+
"ordered-list-marker-value": false,
31+
"table-pipe-alignment": false,
32+
"unordered-list-marker-style": false
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)