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:
Markus Mäkelä
2017-06-30 15:37:35 +03:00
parent 8fb1137ef0
commit 6955be901f
6 changed files with 20 additions and 20 deletions

View File

@ -83,9 +83,9 @@ exports.builder = function(yargs) {
{'Commands': 'attributes.commands'}
])
})
.usage("Usage: show <command>")
.usage('Usage: show <command>')
.help()
.command('*', 'the default command', {}, () => {
console.log("Unknown command. See output of 'help show' for a list of commands.")
console.log('Unknown command. See output of `help show` for a list of commands.')
})
}