Hacker News new | ask | show | jobs
by madeofpalk 4317 days ago
what's the difference between a style checker like jscs and a linter like jshint/jslint?
1 comments

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.