no-direct-mutation-state rule doesn't handle UpdateExpressions #1386
Closed
Description
opened on Aug 21, 2017
this.state.foo++
does not trigger the no-direct-mutation-state
rule.
this.state.foo += 1
does - indicating this is likely just that UpdateExpression
s aren't handled.
Activity