mirror of https://github.com/tootsuite/mastodon
11 lines
339 B
JavaScript
11 lines
339 B
JavaScript
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;
|