Skip to content

Commit

Permalink
feat(markdownlint): lint files recursively (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Feb 4, 2018
1 parent 0b8a1fe commit 20a7a1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module.exports = {
'release',
'init',
'api',
'markdownlint',
],
],
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"test:coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"lint:js": "eslint --ignore-path .gitignore --ext .js,.jsx,.mjs .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md": "markdownlint *.md",
"lint:md": "markdownlint --ignore node_modules \"**/*.md\"",
"lint": "npm-run-all --print-name --print-label --parallel lint:*",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged",
Expand Down
2 changes: 1 addition & 1 deletion test/init.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ suite('init', () => {
commitmsg: 'commitlint -e $GIT_PARAMS',
'lint:js': 'eslint --ignore-path .gitignore --ext .js,.jsx,.mjs .',
'lint:js:fix': 'npm run lint:js -- --fix',
'lint:md': 'markdownlint *.md',
'lint:md': 'markdownlint --ignore node_modules "**/*.md"',
lint: 'npm-run-all --print-name --print-label --parallel lint:*',
precommit: 'lint-staged',
release: 'standard-version',
Expand Down

0 comments on commit 20a7a1c

Please sign in to comment.