.lintstagedrc.cjs 255 B

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