Add proper-names rule to .markdownlint.json, update tests to use that file, fix resulting issues.

This commit is contained in:
David Anson 2022-03-10 06:07:07 +00:00 committed by GitHub
parent 062585e281
commit 4affefc68d
4 changed files with 16 additions and 15 deletions

View file

@ -1,8 +1,16 @@
{
"line-length": false,
"no-inline-html": {
"allowed_elements": [
"a"
"no-duplicate-heading": false,
"proper-names": {
"code_blocks": false,
"names": [
"Cake.Markdownlint",
"CommonMark",
"JavaScript",
"Markdown",
"markdown-it",
"markdownlint",
"Node.js"
]
}
}