87968: Automatic migration from TSLint to ESLint

Via `ng g @angular-eslint/schematics:convert-tslint-to-eslint`
This commit is contained in:
Yura Bondarenko
2022-03-25 10:29:07 +01:00
parent ec6327edc2
commit 245977a432
151 changed files with 292 additions and 596 deletions

View File

@@ -140,10 +140,10 @@ describe('CreateComColPageComponent', () => {
url: ''
},
queue: [],
/* tslint:disable:no-empty */
/* eslint-disable no-empty,@typescript-eslint/no-empty-function */
uploadAll: () => {
}
/* tslint:enable:no-empty */
/* eslint-enable no-empty,@typescript-eslint/no-empty-function */
}
};
});
@@ -185,10 +185,10 @@ describe('CreateComColPageComponent', () => {
queue: [
{}
],
/* tslint:disable:no-empty */
/* eslint-disable no-empty,@typescript-eslint/no-empty-function */
uploadAll: () => {
}
/* tslint:enable:no-empty */
/* eslint-enable no-empty, @typescript-eslint/no-empty-function */
}
};
});