This repository was archived by the owner on Jan 19, 2019. It is now read-only.

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
Ok with
Activity
soda0289 commentedon Apr 18, 2017
There is a fix for this here:
eslint/eslint#8341
Just waiting for one more code review and should be good
corbinu commentedon Jun 28, 2017
@soda0289 can this be closed now?
soda0289 commentedon Jun 28, 2017
This problem is solved.
There are other issues with space-infix-ops with type parameters:
foo<Bar>();
I will try and fix this as well.