summaryrefslogtreecommitdiffstats
path: root/lint-staged.config.js
blob: 06fe66d11e95b256d6896caae365b7e7cb4f1c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
const config = {
  '*': 'prettier --ignore-unknown --write',
  'Capfile|Gemfile|*.{rb,ruby,ru,rake}':
    'bundle exec 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;