noDecrementDo not use standalone `--`. Use `-= 1` instead.small-rules/no-increment-decrementDisallow standalone `++` and `--` statements and for-loop update clauses.
noDecrementDo not use standalone `--`. Use `-= 1` instead.noIncrementDo not use standalone `++`. Use `+= 1` instead.This rule accepts one options object after the severity.
size++;After auto-fix
size += 1;size += 1;