-
-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
289e724
commit f6fbd19
Showing
33 changed files
with
1,449 additions
and
632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import remarkValidateLinks from "remark-validate-links"; | ||
import remarkPresetLintConsistent from "remark-preset-lint-consistent"; | ||
import remarkPresetLintRecommended from "remark-preset-lint-recommended"; | ||
import remarkPresetLintMarkdownStyleGuide from "remark-preset-lint-markdown-style-guide"; | ||
import remarkLintListItemIndent from "remark-lint-list-item-indent"; | ||
import remarkLintListItemSpacing from "remark-lint-list-item-spacing"; | ||
import remarkLintNoFileNameMixedCase from "remark-lint-no-file-name-mixed-case"; | ||
|
||
|
||
export default { | ||
plugins: [ | ||
remarkValidateLinks, | ||
remarkPresetLintConsistent, | ||
remarkPresetLintRecommended, | ||
remarkPresetLintMarkdownStyleGuide, | ||
[remarkLintListItemIndent, "one"], | ||
[remarkLintListItemSpacing, { checkBlanks: true }], | ||
[remarkLintNoFileNameMixedCase, false] | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.