I've configured TSLint for my TypeScript project and I don't know what does the warning forbidden var keyword
mean. Here is a minimal example, which results in the TSLint warning:
var x: number = 1;
Thank you.
Edit: I'm using the sample tslint.json.
let x...
orconst x..
instead ofvar x...
– Dogged