Ignore ESLint rule about condition looping condition for now

This commit is contained in:
James M. Greene
2022-09-16 21:56:47 -05:00
parent 1f9ca39237
commit c4feb8d01e

View File

@@ -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])