Apply consistent spacing and use of single quotes

This commit is contained in:
James M. Greene
2022-09-11 10:23:22 -05:00
parent 35c001ded6
commit 45efe60937
18 changed files with 94 additions and 114 deletions
+2 -2
View File
@@ -184,7 +184,7 @@ class ConfigParser {
throw 'Could not find a configuration object in the configuration file'
}
// A property may be nested in the configuration file. Split the property name with `.`
// A property may be nested in the configuration file. Split the property name with '.'
// then walk the configuration object one property at a time.
var depth = 0
const properties = propertyName.split('.')
@@ -265,7 +265,7 @@ class ConfigParser {
}
// Logging
core.info(`Injection successful, new configuration:`)
core.info('Injection successful, new configuration:')
core.info(this.configuration)
// Finally write the new configuration in the file