Remove ESLint no-continue rule

This commit is contained in:
Evan Hahn 2020-10-27 20:00:28 -05:00 committed by Evan Hahn
parent 6a026c6439
commit 184f7e1bf3
6 changed files with 2 additions and 8 deletions

View file

@ -480,7 +480,6 @@ export class ConversationController {
byE164[e164] = conversation;
// eslint-disable-next-line no-continue
continue;
}

View file

@ -405,7 +405,6 @@ export class Timeline extends React.PureComponent<Props, State> {
const { id, offsetTop, offsetHeight } = child;
if (!id) {
// eslint-disable-next-line no-continue
continue;
}
@ -425,7 +424,6 @@ export class Timeline extends React.PureComponent<Props, State> {
const { offsetTop, id } = child;
if (!id) {
// eslint-disable-next-line no-continue
continue;
}

View file

@ -827,7 +827,6 @@ async function integrateGroupChanges({
const { groupChanges } = changes[i];
if (!groupChanges) {
// eslint-disable-next-line no-continue
continue;
}
@ -841,7 +840,6 @@ async function integrateGroupChanges({
window.log.warn(
'integrateGroupChanges: item had neither groupState nor groupChange. Skipping.'
);
// eslint-disable-next-line no-continue
continue;
}

View file

@ -1,7 +1,6 @@
/* eslint-disable no-await-in-loop */
/* eslint-disable camelcase */
/* eslint-disable no-param-reassign */
/* eslint-disable no-continue */
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/ban-types */