Fix eslint errors
This commit is contained in:
parent
3b4402fb28
commit
8ba3b3552d
@ -428,12 +428,10 @@ module.exports = (port, spinner) => {
|
||||
switch (error.code) {
|
||||
case 'EACCES':
|
||||
spinner.fail('Listening on port ' + port + ' requires elevated privileges!')
|
||||
process.exit(1)
|
||||
break
|
||||
return process.exit(1)
|
||||
case 'EADDRINUSE':
|
||||
spinner.fail('Port ' + port + ' is already in use!')
|
||||
process.exit(1)
|
||||
break
|
||||
return process.exit(1)
|
||||
default:
|
||||
throw error
|
||||
}
|
||||
|
@ -1,5 +1,7 @@
|
||||
'use strict'
|
||||
|
||||
/* eslint-disable standard/no-callback-literal */
|
||||
|
||||
const _ = require('lodash')
|
||||
|
||||
module.exports = (socket) => {
|
||||
|
@ -132,8 +132,7 @@ pm2.connectAsync().then(() => {
|
||||
})
|
||||
default:
|
||||
console.info(colors.bold.cyan('> Open config.yml in your favorite editor. Then start Wiki.js using: node wiki start'))
|
||||
process.exit(0)
|
||||
break
|
||||
return process.exit(0)
|
||||
}
|
||||
}).then(() => {
|
||||
ora.succeed(colors.bold.green('Wiki.js has been configured and is now running!'))
|
||||
|
@ -198,12 +198,10 @@ server.on('error', (error) => {
|
||||
switch (error.code) {
|
||||
case 'EACCES':
|
||||
console.error('Listening on port ' + appconfig.port + ' requires elevated privileges!')
|
||||
process.exit(1)
|
||||
break
|
||||
return process.exit(1)
|
||||
case 'EADDRINUSE':
|
||||
console.error('Port ' + appconfig.port + ' is already in use!')
|
||||
process.exit(1)
|
||||
break
|
||||
return process.exit(1)
|
||||
default:
|
||||
throw error
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user