Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d37a17e

Browse filesBrowse files
ChALkeRcjihrig
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 <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Robert Jefe Lindstaedt <robert.lindstaedt@gmail.com>
1 parent 4875aa2 commit d37a17e
Copy full SHA for d37a17e

File tree

Expand file treeCollapse file tree

1 file changed

+35
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+35
-0
lines changed
Open diff view settings
Collapse file

‎.remarkrc‎

Copy file name to clipboard
+35Lines changed: 35 additions & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.