Hacker News new | ask | show | jobs
by bevacqua 4319 days ago
Automated style checkers such as jscs

[1]: https://www.npmjs.org/package/jscs

2 comments

That doesn't answer my question as far as I can tell, unless you're saying that:

      "Style checking" means "Automated style checkers such as jscs"
what's the difference between a style checker like jscs and a linter like jshint/jslint?
They are similar and have some overlap. However, the overlap is not 100%, so it's good practice to use both jshint and jscs together.

jshint is a static code analysis tool to identify and flag errors/potential errors in JS code. jscs is purely a style checker.