blakeembrey / tslint-config-standard

A TSLint config for JavaScript Standard Style

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

False positive on interface: "expected onespace after colon in parameter"

quantuminformation opened this issue · comments

commented

Not sure if I should raise here or https://github.com/palantir/tslint/issues

export interface ICodeGenerator {
  description: string
  elementAdded: (id: string) => string
  elementRemoved: (id: string) => string
  clickHappened: (queryPath: string) => string
  inputTextEdited: (queryPath: string, newValue: string) => string
  selectChange: (queryPath: string, event: Event) => string
}

gives error:

image

Using tslint 5.0.0

Edit closed, I was looking at the d.ts file(