lint-staged.config.js 339 B

12345678910
  1. const config = {
  2. '*': 'prettier --ignore-unknown --write',
  3. 'Capfile|Gemfile|*.{rb,ruby,ru,rake}': 'bin/rubocop --force-exclusion -a',
  4. '*.{js,jsx,ts,tsx}': 'eslint --fix',
  5. '*.{css,scss}': 'stylelint --fix',
  6. '*.haml': 'bundle exec haml-lint -a',
  7. '**/*.ts?(x)': () => 'tsc -p tsconfig.json --noEmit',
  8. };
  9. module.exports = config;