pitosalas
pitosalas

Reputation: 10892

Typescript Compile Error using a tuple declaration

enter image description here

  1. Why does line 62 have an error?
  2. Why does the panel below says "no errors"?
  3. Why are there three repeated errors about a ',' expected?

Upvotes: 0

Views: 134

Answers (1)

basarat
basarat

Reputation: 276225

Update : This error is fixed

Thanks to the effort of https://stackoverflow.com/users/2652018/steel-brain

For history:

Basically the error panel is telling the truth, there are no errors.

The error you are seeing (inline and in the bottom) are reported by the linter. This was a bug which was reported : https://github.com/AtomLinter/Linter/issues/707 and has been fixed since then. Hopefully they will do a release soon https://github.com/AtomLinter/Linter/issues/707#issuecomment-119084165

Upvotes: 1

Related Questions