Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaScript code checking beyond JSLint [closed]

I'm looking for something that works like Checkstyle for JavaScript. I know about JSLint and I'm already using Google's Closure compiler, but these mostly check for syntactic issues. Checkstyle can check for braces on the wrong line, but it also makes it possible to write custom checks like don't use HashMap.

I'm looking for something like that for an upcoming JavaScript project. Any ideas?

like image 839
Zack Grossbart Avatar asked Dec 10 '09 17:12

Zack Grossbart


1 Answers

Google Closure Linter: http://code.google.com/closure/utilities/

"The Closure Linter is a utility that checks JavaScript files for style issues such as operator placement, missing semicolons, spacing, the presence of JsDoc annotations, and more."

like image 76
dchest Avatar answered Nov 15 '22 09:11

dchest