This repository was archived by the owner on Jan 19, 2019. It is now read-only.
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
Type declaration violates space-infix-ops rule #224
Closed
Description
What version of TypeScript are you using?
2.2.2
What version of typescript-eslint-parser
are you using?
2.1.0
What code were you trying to parse?
const props: IProps= {
foo,
bar,
};
What did you expect to happen?
No error
What happened?
[eslint] Infix operators must be spaced. (space-infix-ops)
Errors on
const props: IProps
Ok with
const props : IProps