kemitix-checkstyle-ruleset/builder/src/main/resources/rules/ForbidCCommentsInMethods.md

17 lines
181 B
Markdown
Raw Normal View History

Prevents the use of `/* C-style */` comments inside methods.
Valid:
````
void doSomething() {
// a comment
}
````
Invalid:
````
void doSomething() {
/* invalid */
}
````