chore: fix linting and move linting to circle

This commit is contained in:
David Dias
2018-02-16 18:04:10 +00:00
parent 99873e877b
commit 379febb610
3 changed files with 10 additions and 13 deletions

View File

@ -55,12 +55,12 @@ parallel([
if (err) { throw err }
node1.pubsub.subscribe('news',
(msg) => console.log(msg.from, msg.data.toString(),
(msg) => console.log(msg.from, msg.data.toString()),
() => {
setInterval(() => {
node2.pubsub.publish('news', Buffer.from('Bird bird bird, bird is the word!'))
}, 1000)
})
}
)
})
})