MXS-1300: Use single quotes in Node.js code
The Node.js code should use single quotes as it appears to be a prevalent style choice for Node.js applications.
This commit is contained in:
@ -65,9 +65,9 @@ exports.builder = function(yargs) {
|
||||
{'Version': 'attributes.version'}
|
||||
])
|
||||
})
|
||||
.usage("Usage: list <command>")
|
||||
.usage('Usage: list <command>')
|
||||
.help()
|
||||
.command('*', 'the default command', {}, () => {
|
||||
console.log("Unknown command. See output of 'help list' for a list of commands.")
|
||||
console.log('Unknown command. See output of `help list` for a list of commands.')
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user