Update npm run target

This commit is contained in:
Takumi Sueda 2022-01-12 02:55:39 +09:00
parent eecc273562
commit 21fa7352e0
2 changed files with 4 additions and 4 deletions

View File

@ -77,8 +77,8 @@ $ source ./env/bin/activate
Textlintを動かして、正常にlintされるか試します。自動修正は`npm run fix`で発動できますが、意図しない修正が起こる可能性があるためあまりおすすめしません。
```sh
$ npm run lint
$ npm run fix # お好みで
$ npm run textlint
$ npm run textlint-fix # お好みで
```
markdownlintを動かして、正常にlintされるか試します。

View File

@ -8,8 +8,8 @@
"textlint-rule-prh": "^5.3.0"
},
"scripts": {
"lint": "textlint '_posts/*'",
"fix": "textlint --fix '_posts/*'",
"textlint": "textlint '_posts/*'",
"textlint-fix": "textlint --fix '_posts/*'",
"mdlint": "./node_modules/markdownlint-cli/markdownlint.js _posts"
}
}