From 0f55b9aec873b10c56305155cdff109522dbcf1e Mon Sep 17 00:00:00 2001 From: David Anson Date: Mon, 22 Apr 2024 20:39:51 -0700 Subject: [PATCH] Remove outdated ESLint suppression. --- demo/markdownlint-browser.js | 1 - helpers/helpers.js | 1 - 2 files changed, 2 deletions(-) diff --git a/demo/markdownlint-browser.js b/demo/markdownlint-browser.js index 20771a1eb..4d8b0700c 100644 --- a/demo/markdownlint-browser.js +++ b/demo/markdownlint-browser.js @@ -155,7 +155,6 @@ function isBlankLine(line) { const startComment = ""; const removeComments = (s) => { - // eslint-disable-next-line no-constant-condition while (true) { const start = s.indexOf(startComment); const end = s.indexOf(endComment); diff --git a/helpers/helpers.js b/helpers/helpers.js index 7605bb178..7373be4bb 100644 --- a/helpers/helpers.js +++ b/helpers/helpers.js @@ -143,7 +143,6 @@ function isBlankLine(line) { const startComment = ""; const removeComments = (s) => { - // eslint-disable-next-line no-constant-condition while (true) { const start = s.indexOf(startComment); const end = s.indexOf(endComment);