-
-
Notifications
You must be signed in to change notification settings - Fork 551
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
4c21ea6
commit f7df897
Showing
1 changed file
with
5 additions
and
4 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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
// For information on writing markdownlint configuration see: | ||
// https://github.com/DavidAnson/markdownlint/blob/main/README.md#optionsconfig | ||
{ | ||
"MD004": "dash", // Prefer hyphens for unordered lists | ||
"MD013": false, // Exercism tends to break lines at sentence ends rather than at a column limit | ||
"MD024": false, // The format for instructions.md requires repeated headings, e.g. "Task" | ||
"MD048": false // We want three backticks for codeblocks, but four tildes for special blocks. | ||
"MD004": "dash", // Prefer hyphens for unordered lists | ||
"MD013": false, // Exercism tends to break lines at sentence ends rather than at a column limit | ||
"MD024": false, // The format for instructions.md requires repeated headings, e.g. "Task" | ||
"MD048": false, // We want three backticks for codeblocks, but four tildes for special blocks. | ||
"MD049": "underscore" // Prettier uses underscores. | ||
} |