diff --git a/src/Province.ts b/src/Province.ts index 7269d4f..6909d7b 100644 --- a/src/Province.ts +++ b/src/Province.ts @@ -11,6 +11,7 @@ export class Province { let rest: string = population; let resources = 0; + // eslint-disable-next-line no-constant-condition while (true) { // TODO: charCodeAt() should get a length of 'rest' const lastChar = rest[rest.length - 1];