We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
this.state.foo++ does not trigger the no-direct-mutation-state rule.
this.state.foo++
no-direct-mutation-state
this.state.foo += 1 does - indicating this is likely just that UpdateExpressions aren't handled.
this.state.foo += 1
UpdateExpression