For readability reasons, the same starting token should be used for each comment line. Rule can be configured to use either ! or #

This starting token should also be followed with a whitespace.

Noncompliant Code Example

With token "#":
! My comments...
! My comments...
#My comments...

Compliant Solution

With token "#":
# My comments...
# My comments...
# My comments...