Pattern: Missing space before comment
Issue: -
This rule checks for missing space between a token and a comment on the same line.
# bad
1 + 1# this operation does ...
# good
1 + 1 # this operation does ...
Pattern: Missing space before comment
Issue: -
This rule checks for missing space between a token and a comment on the same line.
# bad
1 + 1# this operation does ...
# good
1 + 1 # this operation does ...