Add travis task for markdownlint (#460)
* Add travis task for markdownlint * Use nodejs 10 * Use `markdownlint-cli` package to run tests * Apply to any md file * Add config to markdownl linter to allow sibling rule * Fix a lot of markdownlin warnings * Use markdownlint only for CHANGELOG * Add newline to markdown config file
This commit is contained in:
parent
5fd812ba98
commit
57f8059dfe
3
.markdownlint.json
Normal file
3
.markdownlint.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"MD024": { "siblings_only": true }
|
||||
}
|
5
.travis.yml
Normal file
5
.travis.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
language: node_js
|
||||
node_js: "10"
|
||||
|
||||
install: npm install -g markdownlint-cli
|
||||
script: markdownlint CHANGELOG.md
|
441
CHANGELOG.md
441
CHANGELOG.md
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue