BLOG

commit時にPrettierを実行する

commit時にPrettierを実行する

husklint-stagedをインストール

npm install --save-dev husky lint-staged
npx husky install
npm pkg set scripts.prepare="husky install"
npx husky add .husky/pre-commit "npx lint-staged"

package.jsonに追記

以下の記述をpackage.jsonに追加
{
  "lint-staged": {
    "**/*": "prettier --write --ignore-unknown"
  }
}

参考: Prettier Git hooks

BLOG一覧へ