Modify lint-staged.config.js to use yarn

main
Yiqing Zhu 2023-06-08 19:35:52 +10:00
parent 4b7ed54faf
commit 64ee3446e8
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
module.exports = { module.exports = {
'*.json': ['npm run format:check'], '*.json': ['yarn format:check'],
'*.{ts,tsx,js,jsx}': [ '*.{ts,tsx,js,jsx}': [
'npm run lint', 'yarn lint',
"bash -c 'npm run types:check'", "bash -c 'yarn types:check'",
'npm run format:check', 'yarn format:check',
], ],
}; };