fixed linting

This commit is contained in:
Miguel Serrano 2020-06-03 11:00:35 +02:00
parent 803ed1607c
commit b91e59e8a7

View file

@ -90,7 +90,10 @@ class ASpellWorker {
)
this.callback = null
} else {
logger.warn({ error: err, ...errInfo }, 'aspell worker error')
logger.warn(
Object.assign({ error: err }, errInfo),
'aspell worker error'
)
}
})
this.pipe.stdin.on('error', err => {
@ -119,10 +122,7 @@ class ASpellWorker {
this.callback = null
} else {
logger.warn(
{
error: err,
...errInfo
},
Object.assign({ error: err }, errInfo),
'aspell worker error on stdin'
)
}
@ -134,7 +134,7 @@ class ASpellWorker {
this.pipe.stdout.on('data', data => {
// We receive the language code from Aspell as the end of data marker in
// the data. The input is a utf8 encoded string.
let oldPos = output.length
const oldPos = output.length
output = output + data
// The end marker may cross the end of a chunk, so we optimise the search
// using the regex lastIndex property.