E0194: missing parentheses around left-hand side of **
; **
operator cannot be used after unary -
without parentheses
JavaScript does not allow unary operators left of a **
expression. It is a
syntax error to write unary -
, +
, !
, or ~
before a **
expression:
To fix this error, write parentheses around the left-hand side of the **
expression:
Alternatively, write parentheses around the **
expression:
Introduced in quick-lint-js version 2.0.0.