ESLint plugin that wraps a TSLint configuration and lints the whole source using TSLint.
❌ Per What About TSLint?, we highly recommend migrating off TSLint. See typescript-eslint.io for general documentation on typescript-eslint, the tooling that allows you to run ESLint and Prettier on TypeScript code.
yarn add -D @typescript-eslint/eslint-plugin-tslint
Configure in your ESLint config file:
{
"plugins": [
"@typescript-eslint/tslint"
],
"parserOptions": {
"project": "tsconfig.json",
},
"rules": {
"@typescript-eslint/tslint/config": ["warn", {
"lintFile": "", // path to tslint.json of your project
"rules": {
// tslint rules (will be used if `lintFile` is not specified)
},
"rulesDirectory": [
// array of paths to directories with rules, e.g. 'node_modules/tslint/lib/rules' (will be used if `lintFile` is not specified)
]
}],
}
}
Note: The ability to automatically fix problems with --fix
is unavailable for TSLint rules loaded with this plugin.
This plugin contains only a single rule: @typescript-eslint/tslint/config
.