Pattern: Missing whitespace around bit-wise/shift operator
Issue: -
There should be one space before and after bit-wise and shift operators (<<
, >>
, &
, |
, ^
).
x = 128<<1
x = 128 << 1
Pattern: Missing whitespace around bit-wise/shift operator
Issue: -
There should be one space before and after bit-wise and shift operators (<<
, >>
, &
, |
, ^
).
x = 128<<1
x = 128 << 1