mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
11 lines
463 B
JavaScript
11 lines
463 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/setup-wizard/**/*.ts': () => 'npm run check:setup',
|
|
'projects/start-tunnel/**/*.ts': () => 'npm run check:tunnel',
|
|
'projects/**/*.{ts,html}': () => 'npm run check:i18n',
|
|
}
|