Add config file for markdownlint

This config file turns off the "line too long" rule when within a code
block or a table.  Often there is no way to avoid going over 80 lines
in such cases.
pull/113/head
Jeremy Frasier 5 years ago
parent a13597d233
commit 1843ca0b48
No known key found for this signature in database
GPG Key ID: 285B4A02F4305C09
  1. 7
      .mdl_config.json
  2. 2
      .pre-commit-config.yaml

@ -0,0 +1,7 @@
{
"MD013": {
"code_blocks": false,
"tables": false
},
"default": true
}

@ -30,6 +30,8 @@ repos:
# GitHub's autorecognition fu to work, so we should leave it
# alone.
exclude: LICENSE.md
args:
- --config=.mdl_config.json
- repo: https://github.com/adrienverge/yamllint
rev: v1.16.0
hooks:

Loading…
Cancel
Save