Add linting rules for comments
!404 (merged) Not Found
Good
// blah
/*
* blah
* blah
*/
Bad
//blah
// blah
// multiline comment
// with single line prefix
/* single-line comment with multiline prefix */
/*
multiline comment
without stars everywhere
*/
/* multiline comment
* without a newline before and after */
Edited by Erwan Rouchet