frontend/lint-staged.config.js
2021-05-07 15:07:05 -07:00

6 lines
161 B
JavaScript

module.exports = {
"*.ts": () => "tsc -p tsconfig.json",
"*.{js,ts}": "eslint --fix",
"!(/translations)*.{js,ts,json,css,md,html}": "prettier --write",
};