fortune-sheet/lint-staged.config.js
2022-03-05 09:44:18 +08:00

6 lines
142 B
JavaScript

module.exports = {
"**/*.json": ["prettier --write"],
"**/*.{js,jsx,ts,tsx}": ["eslint --fix"],
"**/*.ts?(x)": () => "tsc --noEmit",
};