2024-08-02 14:18:46 +00:00
|
|
|
export default {
|
|
|
|
'*.{js,jsx,ts,tsx}': [
|
|
|
|
'prettier --cache --ignore-unknown --write',
|
|
|
|
'eslint --cache --fix',
|
|
|
|
],
|
|
|
|
'*.{scss,less,styl,html,vue,css}': [
|
|
|
|
'prettier --cache --ignore-unknown --write',
|
|
|
|
'stylelint --fix --allow-empty-input',
|
|
|
|
],
|
|
|
|
'*.md': ['prettier --cache --ignore-unknown --write'],
|
|
|
|
'*.vue': [
|
|
|
|
'prettier --write',
|
|
|
|
'eslint --cache --fix',
|
|
|
|
'stylelint --fix --allow-empty-input',
|
|
|
|
],
|
2024-08-29 13:47:00 +00:00
|
|
|
'{!(package)*.json,*.code-snippets,.!(browserslist)*rc}': [
|
|
|
|
'prettier --cache --write--parser json',
|
|
|
|
],
|
2024-08-02 14:18:46 +00:00
|
|
|
'package.json': ['prettier --cache --write'],
|
|
|
|
};
|