From c4feb8d01e930ad3c3a443b0c824d5a0c53234c3 Mon Sep 17 00:00:00 2001 From: "James M. Greene" Date: Fri, 16 Sep 2022 21:56:47 -0500 Subject: [PATCH] Ignore ESLint rule about condition looping condition for now --- src/config-parser.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config-parser.js b/src/config-parser.js index a1f9e15..932c6b4 100644 --- a/src/config-parser.js +++ b/src/config-parser.js @@ -189,6 +189,7 @@ class ConfigParser { var depth = 0 const properties = propertyName.split('.') var lastNode = configurationObject + // eslint-disable-next-line no-constant-condition while (true) { // Find the node for the current property var propertyNode = this.findProperty(lastNode, properties[depth])