JamesHenry / eslint-plugin-tslint

:sparkles: A plugin which allows you to run a full instance of TSLint within ESLint

Home Page:https://jameshenry.blog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This project has been moved to the TypeScript ESLint organization -> https://typescript-eslint.io


ESLint Plugin TSLint

Travis GitHub license NPM Version NPM Downloads Commitizen friendly semantic-release greenkeeper.io

ESLint plugin wraps a TSLint configuration and lints the whole source using TSLint.

INSTALL

npm i -D eslint-plugin-tslint

USAGE

Configure in your eslint config file:

"plugins": [
    "tslint"
],
"rules": {
    "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) */ ],
        configFile: '/* path to tsconfig.json of your project */',
        compilerOptions: { /* ability to override TypeScript compilers options defined in tsconfig.json */ }
    }],
}

RULES

Plugin contains only single rule tslint/config.

EXAMPLES

TSLint Plugins

About

:sparkles: A plugin which allows you to run a full instance of TSLint within ESLint

https://jameshenry.blog

License:MIT License


Languages

Language:TypeScript 96.1%Language:JavaScript 3.9%