Skip to content

Commit

Permalink
Create .markdownlint.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jimstir authored Mar 15, 2024
1 parent 4bd6071 commit 0a0542a
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"code-block-style": {
"style": "fenced"
},
"code-fence-style": {
"style": "backtick"
},
"emphasis-style": {
"style": "asterisk"
},
"fenced-code-language": {
"allowed_languages": [
"bash",
"html",
"javascript",
"json",
"markdown",
"text",
"xml",
"yaml"
],
"language_only": true
},
"heading-style": {
"style": "atx"
},
"hr-style": {
"style": "---"
},
"line-length": {
"strict": true,
"code_blocks": false
},
"link-image-style": {
"autolink": false,
"inline": false,
"collapsed": false,
"shortcut": false
},
"no-duplicate-heading": {
"siblings_only": true
},
"ol-prefix": {
"style": "ordered"
},
"proper-names": {
"code_blocks": false,
"names": [
"CommonMark",
"JavaScript",
"Markdown",
"markdown-it",
"markdownlint",
"markdownlint-cli2",
"Node.js"
]
},
"strong-style": {
"style": "asterisk"
},
"table-pipe-style": {
"style": "leading_and_trailing"
},
"ul-style": {
"style": "dash"
}
}

0 comments on commit 0a0542a

Please sign in to comment.