You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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!
The text was updated successfully, but these errors were encountered:
angelozerr
changed the title
jslint not working and how remove warning on disabled autocompile &
tslint not working and how remove warning on disabled autocompile &
Dec 22, 2016
Hellow!
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?
I specifically do not include the compilation, and do not want to see the warning about it!
The text was updated successfully, but these errors were encountered: