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 = {
'*.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',
],
};