123456 |
- module.exports = {
- '*': 'prettier --cache --ignore-unknown --write',
- '*.{scss,vue}': 'stylelint --cache --fix',
- '*.{js,jsx,ts,tsx,vue,json}': 'eslint --cache --no-warn-ignored --max-warnings 0 --fix',
- '*.{ts,tsx,vue}': () => 'vue-tsc --build',
- };
|