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

module.exports = config;