build: ignore node_modules for tslint
This commit is contained in:
parent
9479a106bb
commit
82b067fc40
|
@ -13,6 +13,9 @@ module.exports = (gulp) => () => {
|
||||||
'./tools/**/*.ts',
|
'./tools/**/*.ts',
|
||||||
'./*.ts',
|
'./*.ts',
|
||||||
|
|
||||||
|
// Ignore node_modules directories
|
||||||
|
'!**/node_modules/**',
|
||||||
|
|
||||||
// Ignore TypeScript mocks because it's not managed by us
|
// Ignore TypeScript mocks because it's not managed by us
|
||||||
'!./tools/@angular/tsc-wrapped/test/typescript.mocks.ts',
|
'!./tools/@angular/tsc-wrapped/test/typescript.mocks.ts',
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue