Explaining TypeScript Linter Errors Explaining TypeScript Linter Errors typescript typescript

Explaining TypeScript Linter Errors


sort of tslint wiki?

Unfortunately no. But a short description ins present here https://github.com/palantir/tslint#supported-rules

Many of these are from jslint so this should help http://jslinterrors.com/

TsLint: comment must start with a space (really? why?)

It is a coding convention to make comments visually pleasing. // comment Is much easier to read than //comment. Visual aesthetics become important in large teams.