lint-staged.config.js 190 字节
Newer Older
1
module.exports = {
2 3
    '**/*.ts?(x)': () => ['tsc -p tsconfig.json --noEmit', 'tsc -p server/tsconfig.json --noEmit'],
    '**/*.(j|t)s?(x)': filenames => `eslint ${filenames.join(' ')}`
4
};