-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
code-server
version: 1.32.0-310- OS Version: Ubuntu 18.04 and/or using the dockerized version
Description
TSLint extension does not appear to work with code-server. I don't see any in-editor warnings/errors for things that violate the specified tslint rules. See repro steps below.
Extension: ms-vscode.vscode-typescript-tslint-plugin
Side Note: The download count is VERY different for this extension in code-server vs vscode. This extension shows ~30 downloads in code-server versus ~400,000 downloads in vscode. Are these coming from different repos??
Steps to Reproduce
- Create a new tslint project via running
tslint --init
. - Modify tslint.json to add a rule about quotes for example:
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"quotemark": [true, "single"]
},
"rulesDirectory": []
}
- Create a file
example.ts
:
let foo = "bar";
- Note that tslint does not complain about the double quotes.
nol166
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working