diff --git a/.markdownlint.jsonc b/.markdownlint.jsonc new file mode 100644 index 0000000..cf5e555 --- /dev/null +++ b/.markdownlint.jsonc @@ -0,0 +1,19 @@ +{ + // Style of unordered lists.. + "MD007": { + "indent": 2, + "start_indented": true + }, + + // no-trailing-spaces: true + "MD009": false, + + // Line length. Who cares. + "MD013": false, + + // Multiple headings with the same content. That's fine. + "MD024": false, + + // Cause I love inlining a little HTML in my markdown. + "MD033": false +}