views:

19

answers:

1

I'm currently writing on some coding and style guidelines regarding JavaScript and CSS parts of projects. Eclipse offers some basic functionality in this area for situations where code is generated but is there also something en-par with CheckStyle for at least marking guideline-violations as warnings/errors?

Or how do you handle coding guidelines with JS and CSS?

A: 

I use JSLint for my JavaScript coding guidelines, and it looks as if there's a JSLint plugin for Eclipse here

Phil Jenkins
Thank you :-) But I need a bit more than "just" semantical validation, e.g. commenting of functions, global comments per file etc.
Horst Gutmann