E0176: missing arrow operator for arrow function
Arrow functions have a parameter list followed by =>
followed by a function
body. It is a syntax error to omit the =>
:
To fix this error, write =>
after the parameter list:
Alternatively, write function
before the parameter list:
Introduced in quick-lint-js version 0.6.0.