Files
start-os/frontend/lint-staged.config.js
2022-11-29 09:43:54 -07:00

10 lines
404 B
JavaScript

module.exports = {
'**/*.{js,ts,html,md,json}': 'prettier --write',
'*.ts': 'tslint --fix',
'projects/ui/**/*.ts': () => 'npm run check:ui',
'projects/shared/**/*.ts': () => 'npm run check:shared',
'projects/marketplace/**/*.ts': () => 'npm run check:marketplace',
'projects/diagnostic-ui/**/*.ts': () => 'npm run check:dui',
'projects/setup-wizard/**/*.ts': () => 'npm run check:setup',
}