totallymike / ircnode

Extensible IRC bot written with node.js
https://github.com/totallymike/ircnode/wiki
MIT License
4 stars 2 forks source link

Fix joining issue #29

Closed theVDude closed 12 years ago

theVDude commented 12 years ago

ircnode bot sent join command too quickly and wouldn't join some servers, but now it can.

totallymike commented 12 years ago

Would you mind linting this?

Grab the jshintrc file out of my dotfiles repo, put it in ~/.jshintrc, then


sudo npm install -g jshint
jshint client.js
theVDude commented 12 years ago

jshint cleared, still a bit unsure of js syntax

totallymike commented 12 years ago

Don't feel bad being less than sure about the syntax. The syntax is so fast and loose that you can get away with a lot. That's why we have linters ;) jshint is pretty good for catching funky things one may have forgotten, and enforcing consistent style rules.