-
Bug
-
Resolution: Deferred
-
Minor
-
None
-
2.7.9, 2.8.7, 2.9.1
-
None
-
MOODLE_27_STABLE, MOODLE_28_STABLE, MOODLE_29_STABLE
Right now we are not looking for C-style (/* .... */, single or multiline) in the checker. More yet, we are, incorrectly, suggesting them!
Coding style clearly shows them as incorrect, bad.
And we have a good number of them:
$ ag '\/\*$' | wc -l
|
3506
|
Although it's clear they are minority:
$ ag '\/\**$' | wc -l
|
220880
|
So, this is about to make the checker to detect such incorrect C-style inline comments and report them as errors.
Ciao