diff --git a/lint-staged.config.js b/lint-staged.config.js index 9cf3a2f..9fec346 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,8 +1,8 @@ module.exports = { - '*.json': ['npm run format:check'], + '*.json': ['yarn format:check'], '*.{ts,tsx,js,jsx}': [ - 'npm run lint', - "bash -c 'npm run types:check'", - 'npm run format:check', + 'yarn lint', + "bash -c 'yarn types:check'", + 'yarn format:check', ], };