mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
9 lines
336 B
JavaScript
9 lines
336 B
JavaScript
export default {
|
|
// eslint
|
|
'*.{js,ts,tsx,jsx}': ['prettier --write', 'eslint --cache --fix'],
|
|
'*.{vue}': ['stylelint --fix', 'prettier --write', 'eslint --cache --fix'],
|
|
'*.{less,css}': ['stylelint --fix', 'prettier --write'],
|
|
// typecheck
|
|
'src/**/{*.ts,*.tsx,*.vue,tsconfig.json}': ({ filenames }) => 'npm run typecheck'
|
|
}
|