UNPKG

206 BJavaScriptView Raw
1const micromatch = require('micromatch')
2module.exports = {
3 '*.{ts,tsx}': files => {
4 const match = micromatch.not(files, '**/__tests__/*.{ts,tsx}')
5 return match.map(file => 'npm run lint')
6 }
7}
8