diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 000000000..c6bada2b6 --- /dev/null +++ b/.markdownlint.json @@ -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" + } +}