microsoft / vscode-typescript-tslint-plugin

VS Code extension that provides TSLint support using the typescript-tslint-plugin
https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-typescript-tslint-plugin
MIT License
188 stars 34 forks source link

Doc: Mention the differences to the existing vscode-tslint #12

Closed egamma closed 5 years ago

egamma commented 5 years ago

Testing: https://github.com/Microsoft/vscode/issues/62092

To ease the migration the Readme should document the difference to vscode-tslint.

I tried to do this an older version of the extension

https://github.com/Microsoft/vscode-ts-tslint#differences-between-vscode-tslint-vnext-and-vscode-tslint

egamma commented 5 years ago

The TSLint extension bundles a tslint and typescript version.

@mjbvz this is no longer true, the tslint version is now loaded either locally from the workspace or globally. I´ve already deleted the bullet in the Readme, but the Readme should explain how tslint and typescript are located. Below is how it was explained in vscode-tslint.

The extension requires that the tslint and typescript modules are installed either locally or globally. The extension will use the tslint module that is installed closest to the linted file. To install tslint and typescript globally you can run npm install -g tslint typescript.