Skip to content

Commit

Permalink
ci(lint-staged): switch order of markdown lint-staged stages
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Oct 21, 2022
1 parent 70be4ba commit 80d7914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*/
module.exports = {
'*.md': [
'npx remark --output --ignore-path=.prettierignore --silently-ignore',
'npx doctoc --no-title --maxlevel=3 --update-only'
'npx doctoc --no-title --maxlevel=3 --update-only',
'npx remark --output --ignore-path=.prettierignore --silently-ignore'
],
'package.json': 'sort-package-json',
'*': 'prettier --write --ignore-unknown'
Expand Down

0 comments on commit 80d7914

Please sign in to comment.