Fix deprecated configuration key detection in a section
authorJérôme Benoit <jerome.benoit@sap.com>
Tue, 8 Mar 2022 17:50:52 +0000 (18:50 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Tue, 8 Mar 2022 17:50:52 +0000 (18:50 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/Configuration.ts

index 7309ec2f1c9303232d30e0de3de66119a738fc09..9d873d2fded1d3640f3c7c6fb6613ae8dcd8e323 100644 (file)
@@ -299,9 +299,9 @@ export default class Configuration {
     if (
       sectionName &&
       !Configuration.isUndefined(Configuration.getConfig()[sectionName]) &&
-      !Configuration.isUndefined(Configuration.getConfig()[sectionName] as Record<string, unknown>)[
-        key
-      ]
+      !Configuration.isUndefined(
+        (Configuration.getConfig()[sectionName] as Record<string, unknown>)[key]
+      )
     ) {
       console.error(
         chalk`{green ${Configuration.logPrefix()}} {red Deprecated configuration key '${key}' usage in section '${sectionName}'${