0.1.0 • Published 6 years ago
eslint-plugin-tslint-comments v0.1.0
eslint-plugin-tslint-comments
Useful when migrating from tslint to eslint. Once tslint has been removed, this rule helps locate tslint annotations (e.g. // tslint:disable).
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-tslint-comments:
$ npm install eslint-plugin-tslint-comments --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-tslint-comments globally.
Usage
Add tslint-comments to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": ["tslint-comments"]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"tslint-comments/forbid-all": 2
}
}Supported Rules
- forbid-all: Identify tslint rule flags so that they can be removed
0.1.0
6 years ago