pokertk/lint-staged.config.js

8 lines
142 B
JavaScript

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