blob: efe68ee2170faf7707cb2c828e96ac76b687c980 (
plain)
| 1
2
3
4
5
6
7
 | module.exports = {
  '**/*.ts?(x)': () => 'tsc -p tsconfig.json --noEmit',
  '**/*.(ts|tsx|js|jsx)': ['eslint --cache --fix', 'prettier --write'],
  '**/*.(md|json)': 'prettier --write',
  '**/*.scss': ['stylelint --fix', 'prettier --write'],
  '*': ['cspell --no-must-find-files --no-progress'],
};
 |