Update compile pipeline and fix eslint (#16129)

* Update pipelines

* eslint

* Fix layering

* update tsec exemption
This commit is contained in:
Charles Gagnon
2021-07-14 14:43:23 -07:00
committed by GitHub
parent f7bf914bcb
commit 8faa0cf0e2
13 changed files with 54 additions and 62 deletions

View File

@@ -207,8 +207,7 @@ export class CellSelectionModel<T> implements Slick.SelectionModel<T, Array<Slic
let i = 0;
while (true) {
if (i++ > 10000) {
console.error('InsertIntoSelection infinite loop: Report this error on github');
break;
throw new Error('InsertIntoSelection infinite loop');
}
let shouldContinue = false;
for (let current of newRanges) {