Closed
Description
Hellow!
- I enabled Preferences -> JavaScript -> TypeScript -> Validation -> Search for 'tslint' from folder (or manualy put path to file tslint.json)
I copy to Project folder file tslint.json
body tslint.json
{
"rules": {
"class-name": true,
"semicolon": [true, "always"]
}
}
but TypeScript ignoring line without semicolon like this var a="test"
How to include a warning that there is no bar in the semicolon?
- How to disable a warning on the first line "TypeScript file cannot be compiled on save because tsconfig.json disable it. If this is not intended, please set "compileOnSave" to "true" of your "tsconfig.json" file." ?
I specifically do not include the compilation, and do not want to see the warning about it!