mailaneel / tslint-eslint-rules

Improve your TSLint with the missing ESLint rules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Downloads per Month NPM Version ZenHub Shields.io License

ESLint rules for TSLint

Improve your TSLint with the missing ESLint Rules

You want to code in TypeScript but miss all the rules available in ESLint?

Now you can combine both worlds by using this TSLint plugin!

Usage

Install from NPM to your Dev Dependencies

npm install --save-dev tslint-eslint-rules

Configure TSLint to use tslint-eslint-rules folder:

In your tslint.json file, add the rulesDirectory property, e.g:

{
  "rulesDirectory": "node_modules/tslint-eslint-rules/dist/rules",
  "rules": {
    "no-constant-condition": true
  }
}

You can also pass an array of strings to the rulesDirectory property to combine this plugin with other community custom rules.

Configure your rules

In your tslint.json file, insert the rules as described below.

Rules (copied from ESLint website)

The list below shows all the existing ESLint rules and the similar rules available in TSLint.

Possible Errors

The following rules point out areas where you might have made mistakes.

  • comma-dangle => trailing-comma (native)

    • Description: disallow or enforce trailing commas (recommended)

    • Usage

      "trailing-comma": [
        true,
        {
          "multiline": "never",
          "singleline": "never"
        }
      ]
  • no-cond-assign => no-conditional-assignment (native)

    • Description: disallow assignment in conditional expressions (recommended)

    • Usage

      "no-conditional-assignment": true
  • no-console => no-console (native)

    • Description: disallow use of console in the node environment (recommended)

    • Usage

      "no-console": [
        true,
        "debug",
        "info",
        "time",
        "timeEnd",
        "trace"
      ]
  • no-constant-condition => no-constant-condition (tslint-eslint-rules)

    • Description: disallow use of constant expressions in conditions (recommended)

    • Usage

      "no-constant-condition": true
  • no-control-regex => no-control-regex (tslint-eslint-rules)

    • Description: disallow control characters in regular expressions (recommended)

    • Usage

      "no-control-regex": true
  • no-debugger => no-debugger (native)

    • Description: disallow use of debugger (recommended)

    • Usage

      "no-debugger": true
  • no-dupe-args => not applicable to TypeScript

    • Description: disallow duplicate arguments in functions (recommended)
  • no-dupe-keys => no-duplicate-key (native)

    • Description: disallow duplicate keys when creating object literals (recommended)

    • Usage

      "no-duplicate-key": true
  • no-duplicate-case => no-duplicate-case (tslint-eslint-rules)

    • Description: disallow a duplicate case label. (recommended)

    • Usage

      "no-duplicate-case": true
  • no-empty => no-empty (native)

    • Description: disallow empty statements (recommended)

    • Usage

      "no-empty": true
  • no-empty-character-class => no-empty-character-class (tslint-eslint-rules)

    • Description: disallow the use of empty character classes in regular expressions (recommended)

    • Usage

      "no-empty-character-class": true
  • no-ex-assign => no-ex-assign (tslint-eslint-rules)

    • Description: disallow assigning to the exception in a catch block (recommended)

    • Usage

      "no-ex-assign": true
  • no-extra-boolean-cast => no-extra-boolean-cast (tslint-eslint-rules)

    • Description: disallow double-negation boolean casts in a boolean context (recommended)

    • Usage

      "no-extra-boolean-cast": true
  • no-extra-parens => no-extra-parens (tslint-eslint-rules) TODO (low priority)

    • Description: disallow unnecessary parentheses

    • Usage

      "no-extra-parens": [
        true,
        "functions"
      ]
      "no-extra-parens": [
        true,
        "all"
      ]
  • no-extra-semi => no-extra-semi (tslint-eslint-rules)

    • Description: disallow unnecessary semicolons (recommended)

    • Usage

      "no-extra-semi": true
  • no-func-assign => not applicable to TypeScript

    • Description: disallow overwriting functions written as function declarations (recommended)
  • no-inner-declarations => no-inner-declarations (tslint-eslint-rules)

    • Description: disallow function or variable declarations in nested blocks (recommended)

    • Usage

      "no-inner-declarations": [
        true,
        "functions"
      ]
      "no-inner-declarations": [
        true,
        "both"
      ]
  • no-invalid-regexp => no-invalid-regex (tslint-eslint-rules)

    • Description: disallow invalid regular expression strings in the RegExp constructor (recommended)

    • Usage

      "no-invalid-regexp": true
  • no-irregular-whitespace => no-irregular-whitespace (tslint-eslint-rules)

    • Description: disallow irregular whitespace outside of strings and comments (recommended)

    • Usage

      "no-irregular-whitespace": true
  • no-negated-in-lhs => not applicable to TypeScript

    • Description: disallow negation of the left operand of an in expression (recommended)
  • no-obj-calls => not applicable to TypeScript

    • Description: disallow the use of object properties of the global object (Math and JSON) as functions (recommended)
  • no-regex-spaces => no-regex-spaces (tslint-eslint-rules)

    • Description: disallow multiple spaces in a regular expression literal (recommended)

    • Usage

      "no-regex-spaces": true
  • no-sparse-arrays => no-sparse-arrays (tslint-eslint-rules)

    • Description: disallow sparse arrays (recommended)

    • Usage

      "no-sparse-arrays": true
  • no-unexpected-multiline => no-unexpected-multiline (tslint-eslint-rules)

    • Description: Avoid code that looks like two expressions but is actually one

    • Usage

      "no-unexpected-multiline": true
  • no-unreachable => no-unreachable (native)

    • Description: disallow unreachable statements after a return, throw, continue, or break statement (recommended)

    • Usage

      "no-unreachable": true
  • use-isnan => use-isnan (tslint-eslint-rules)

    • Description: disallow comparisons with the value NaN (recommended)

    • Usage

      "use-isnan": true
  • valid-jsdoc => valid-jsdoc (tslint-eslint-rules)

    • Description: Ensure JSDoc comments are valid

    • Usage

      "valid-jsdoc": [
        true,
        {
          "prefer": {
            "return": "returns"
          },
          "requireReturn": false,
          "requireParamDescription": true,
          "requireReturnDescription": true,
          "matchDescription": "^[A-Z][A-Za-z0-9\\s]*[.]$"
        }
      ]
  • valid-typeof => valid-typeof (tslint-eslint-rules)

    • Description: Ensure that the results of typeof are compared against a valid string (recommended)

    • Usage

      "valid-typeof": true

Best Practices

These are rules designed to prevent you from making mistakes. They either prescribe a better way of doing something or help you avoid footguns.

  • accessor-pairs => accessor-pairs (tslint-eslint-rules) TODO

    • Description: Enforces getter/setter pairs in objects

    • Usage

      "accessor-pairs": [
        true,
        {
          "getWithoutSet" : true,
          "setWithoutGet" : true
        }
      ]
  • array-callback-return => array-callback-return (tslint-eslint-rules) TODO

    • Description: Enforce return statements in callbacks of array’s methods

    • Usage

      "array-callback-return": true
  • block-scoped-var => accessor-pairs (tslint-eslint-rules) TODO

    • Description: treat var statements as if they were block scoped

    • Usage

      "block-scoped-var": true
  • complexity => complexity (tslint-eslint-rules) TODO

    • Description: specify the maximum cyclomatic complexity allowed in a program

    • Usage

      "complexity": [
        true,
        3
      ]
  • consistent-return => consistent-return (tslint-eslint-rules) TODO

    • Description: require return statements to either always or never specify values

    • Usage

      "consistent-return": true
  • curly => curly (native)

    • Description: specify curly brace conventions for all control statements

    • Usage

      "curly": true
  • default-case => switch-default (native)

    • Description: require default case in switch statements

    • Usage

      "default-case": true
  • dot-location => dot-location (tslint-eslint-rules) TODO

    • Description: enforces consistent newlines before or after dots

    • Usage

      "dot-location": [
          true,
          "object"
        ]
      "dot-location": [
          true,
          "property"
        ]
  • dot-notation => dot-notation (tslint-eslint-rules) TODO

    • Description: encourages use of dot notation whenever possible

    • Usage

      "dot-notation": [
          true,
          {
            "allowKeywords": true,
            "allowPattern": ""
          }
        ]
  • eqeqeq => triple-equals (native)

    • Description: require the use of === and !==

    • Usage

      "eqeqeq": [
          true,
          "allow-null-check"
        ]
  • guard-for-in => forin (native)

    • Description: make sure for-in loops have an if statement

    • Usage

      "forin": true
  • no-alert => no-alert (tslint-eslint-rules) TODO

    • Description: disallow the use of alert, confirm, and prompt

    • Usage

      "no-alert": true
  • no-caller => no-arg (native)

    • Description: disallow use of arguments.caller or arguments.callee

    • Usage

      "no-arg": true
  • no-case-declarations => no-case-declarations (tslint-eslint-rules) TODO

    • Description: disallow lexical declarations in case clauses

    • Usage

      "no-case-declarations": true
  • no-div-regex => no-div-regex (tslint-eslint-rules) TODO

    • Description: disallow division operators explicitly at beginning of regular expression

    • Usage

      "no-div-regex": true
  • no-else-return => no-else-return (tslint-eslint-rules) TODO

    • Description: disallow else after a return in an if

    • Usage

      "no-else-return": true
  • no-empty-function => no-empty-function (tslint-eslint-rules) TODO

    • Description: disallow use of empty functions

    • Usage

      "no-empty-function": true
  • no-empty-pattern => no-empty-pattern (tslint-eslint-rules) TODO

    • Description: disallow use of empty destructuring patterns

    • Usage

      "no-empty-pattern": true
  • no-eq-null => no-eq-null (tslint-eslint-rules) TODO

    • Description: disallow comparisons to null without a type-checking operator

    • Usage

      "no-eq-null": true
  • no-eval => no-eval (native)

    • Description: disallow use of eval()

    • Usage

      "no-eval": true
  • no-extend-native => no-extend-native (tslint-eslint-rules) TODO

    • Description: disallow adding to native types

    • Usage

      "no-extend-native": [
          true,
          {
            "exceptions": ["Object", "String"]
          }
        ]
  • no-extra-bind => no-extra-bind (tslint-eslint-rules) TODO

    • Description: disallow unnecessary function binding

    • Usage

      "no-extra-bind": true
  • no-extra-label => no-extra-label (tslint-eslint-rules) TODO

    • Description: disallow unnecessary labels

    • Usage

      "no-extra-label": true
  • no-fallthrough => no-switch-case-fall-through (native)

    • Description: disallow fallthrough of case statements (recommended)

    • Usage

      "no-fallthrough": true
  • no-floating-decimal => no-floating-decimal (tslint-eslint-rules) TODO

    • Description: disallow the use of leading or trailing decimal points in numeric literals

    • Usage

      "no-floating-decimal": true
  • no-implicit-coercion => no-implicit-coercion (tslint-eslint-rules) TODO

    • Description: disallow the type conversions with shorter notations

    • Usage

      "no-implicit-coercion": [
          true,
          {
            "boolean": true,
            "number": true,
            "string": true
          }
        ]
  • no-implicit-globals => no-implicit-globals (tslint-eslint-rules) TODO

    • Description: disallow var and named functions in global scope

    • Usage

      "no-implicit-coercion": true
  • no-implied-eval => no-implied-eval (tslint-eslint-rules) TODO

    • Description: disallow use of eval()-like methods

    • Usage

      "no-implied-eval": true
  • no-invalid-this => no-invalid-this (tslint-eslint-rules) TODO

    • Description: disallow this keywords outside of classes or class-like objects

    • Usage

      "no-invalid-this": true
  • no-iterator => no-iterator (tslint-eslint-rules) TODO

    • Description: disallow Usage of __iterator__ property

    • Usage

      "no-iterator": true
  • no-labels => no-labels (tslint-eslint-rules) TODO

    • Description: disallow use of labeled statements

    • Usage

      "no-labels": true
  • no-lone-blocks => no-lone-blocks (tslint-eslint-rules) TODO

    • Description: disallow unnecessary nested blocks

    • Usage

      "no-lone-blocks": true
  • no-loop-func => no-loop-func (tslint-eslint-rules) TODO

    • Description: disallow creation of functions within loops

    • Usage

      "no-loop-func": true
  • no-magic-numbers => no-magic-numbers (tslint-eslint-rules) TODO

    • Description: disallow the use of magic numbers

    • Usage

      "no-magic-numbers": [
          true,
          {
            "ignore": [0, 1, 2],
            "enforceConst": false,
            "detectObjects": false
          }
        ]
  • no-multi-spaces => no-multi-spaces (tslint-eslint-rules) TODO

    • Description: disallow use of multiple spaces

    • Usage

      "no-multi-spaces": [
          true,
          {
            "exceptions": [ { "ImportDeclation": true }, { "Property": false } ]
          }
        ]
  • no-multi-str => no-multi-str (tslint-eslint-rules) TODO

    • Description: disallow use of multiline strings

    • Usage

      "no-multi-str": true
  • no-native-reassign => Not applicable to TypeScript

    • Description: disallow reassignments of native objects
  • no-new => no-new (tslint-eslint-rules) TODO

    • Description: disallow use of the new operator when not part of an assignment or comparison

    • Usage

      "no-new": true
  • no-new-func => no-new-func (tslint-eslint-rules) TODO

    • Description: disallow use of new operator for Function object

    • Usage

      "no-new-func": true
  • no-new-wrappers => no-new-wrappers (tslint-eslint-rules) TODO // ou no-construct

    • Description: disallows creating new instances of String,Number, and Boolean

    • Usage

      "no-new-wrappers": true
  • no-octal => Not applicable to TypeScript

    • Description: disallow use of octal literals (recommended)
  • no-octal-escape => no-octal-escape (tslint-eslint-rules) TODO

    • Description: disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251";

    • Usage

      "no-octal-escape": true
  • no-param-reassign => no-param-reassign (tslint-eslint-rules) TODO

    • Description: disallow reassignment of function parameters

    • Usage

      "no-param-reassign": [
          true,
          {
            "props": false
          }
        ]
  • no-proto => no-proto (tslint-eslint-rules) TODO

    • Description: disallow Usage of __proto__ property

    • Usage

      "no-proto": true
  • no-redeclare => no-duplicate-variable (native)

  • no-return-assign => no-return-assign (tslint-eslint-rules) TODO

    • Description: disallow use of assignment in return statement

    • Usage

      "no-return-assign": [
          true,
          "except-parens"
        ]
       "no-return-assign": [
          true,
          "always"
        ]
  • no-script-url => no-script-url (tslint-eslint-rules) TODO

    • Description: disallow use of javascript: urls.

    • Usage

      "no-script-url": true
  • no-self-compare => no-self-compare (tslint-eslint-rules) TODO

    • Description: disallow comparisons where both sides are exactly the same

    • Usage

      "no-self-compare": true
  • no-sequences => no-sequences (tslint-eslint-rules) TODO

    • Description: disallow use of the comma operator

    • Usage

      "no-sequences": true
  • no-throw-literal => no-throw-literal (tslint-eslint-rules) TODO

    • Description: restrict what can be thrown as an exception

    • Usage

      "no-throw-literal": true
  • no-unmodified-loop-condition => no-unmodified-loop-condition (tslint-eslint-rules) TODO

    • Description: disallow unmodified conditions of loops

    • Usage

      "no-unmodified-loop-condition": true
  • no-unused-expressions => no-unused-expression (native)

    • Description: disallow Usage of expressions in statement position

    • Usage

      "no-unused-expressions": true
  • no-unused-labels => no-unused-labels (tslint-eslint-rules) TODO

    • Description: disallow unused labels

    • Usage

      "no-unused-labels": true
  • no-useless-call => no-useless-call (tslint-eslint-rules) TODO

    • Description: disallow unnecessary .call() and .apply()

    • Usage

      "no-useless-call": true
  • no-useless-concat => no-useless-concat (tslint-eslint-rules) TODO

    • Description: disallow unnecessary concatenation of literals or template literals

    • Usage

      "no-useless-concat": true
  • no-useless-escape => no-useless-escape (tslint-eslint-rules) TODO

    • Description: disallow unnecessary usage of escape character

    • Usage

      "no-useless-escape": true
  • no-void => no-void (tslint-eslint-rules) TODO

    • Description: disallow use of the void operator

    • Usage

      "no-void":true
  • no-warning-comments => no-warning-comments (tslint-eslint-rules) TODO

    • Description: disallow Usage of configurable warning terms in comments e.g. TODO or FIXME

    • Usage

      "no-warning-comments": [
          true,
          {
            "terms": ["todo", "fixme", "xxx"],
            "location": "start"
          }
        ]
  • no-with => no-with (tslint-eslint-rules) TODO

    • Description: disallow use of the with statement

    • Usage

      "no-with": true
  • radix => radix (native)

    • Description: require use of the second argument for parseInt()

    • Usage

      "radix": true
  • vars-on-top => vars-on-top (tslint-eslint-rules) TODO

    • Description: require declaration of all vars at the top of their containing scope

    • Usage

      "vars-on-top": true
  • wrap-iife => wrap-iife (tslint-eslint-rules) TODO

    • Description: require immediate function invocation to be wrapped in parentheses

    • Usage

      "wrap-iife": [
          true,
          "inside"
        ]
      "wrap-iife": [
          true,
          "outside"
        ]
      "wrap-iife": [
          true,
          "any"
        ]
  • yoda => yoda (tslint-eslint-rules) TODO

    • Description: require or disallow Yoda conditions

    • Usage

      "yoda": [
          true,
          "never"
        ]
      "yoda": [
          true,
          "always"
        ]

Strict Mode

These rules relate to using strict mode.

  • strict => strict (tslint-eslint-rules) TODO
    • Description: require effective use of strict mode directives

    • Usage

      "strict": [
          true,
          "safe"
        ]
      "strict": [
          true,
          "never"
        ]
      "strict": [
          true,
          "global"
        ]
      "strict": [
          true,
          "function"
        ]

Variables

These rules have to do with variable declarations.

  • init-declarations => init-declarations (tslint-eslint-rules) TODO

    • Description: enforce or disallow variable initializations at definition

    • Usage

      "init-declarations": [
          true,
          "always"
          {
            "ignoreForLoopInit": false
          }
        ]
      "init-declarations": [
          true,
          "never"
          {
            "ignoreForLoopInit": false
          }
        ]
  • no-catch-shadow => no-catch-shadow (tslint-eslint-rules) TODO

    • Description: disallow the catch clause parameter name being the same as a variable in the outer scope

    • Usage

      "no-catch-shadow": true
  • no-delete-var => not applicable to TypeScript

    • Description: disallow deletion of variables (recommended)
  • no-label-var => no-label-var (tslint-eslint-rules) TODO

    • Description: disallow labels that share a name with a variable

    • Usage

      "no-label-var": true
  • no-shadow => no-shadowed-variable (native)

    • Description: disallow declaration of variables already declared in the outer scope

    • Usage

      "no-shadowed-variable": true
  • no-shadow-restricted-names => no-shadow-restricted-names (tslint-eslint-rules) TODO

    • Description: disallow shadowing of names such as arguments

    • Usage

      "no-shadow-restricted-names": true
  • no-undef => not applicable to TypeScript

    • Description: disallow use of undeclared variables unless mentioned in a /*global */ block (recommended)
  • no-undef-init => no-undef-init (tslint-eslint-rules) TODO

    • Description: disallow use of undefined when initializing variables

    • Usage

      "no-undef-init": true
  • no-undefined => no-undefined (tslint-eslint-rules) TODO

    • Description: disallow use of undefined variable

    • Usage

      "no-undefined": true
  • no-unused-vars => no-unused-variable (native)

    • Description: disallow declaration of variables that are not used in the code (recommended)

    • Usage

      "no-unused-variable": true
  • no-use-before-define => no-use-before-define (native)

    • Description: disallow use of variables before they are defined

    • Usage

      "no-use-before-define": true

Node.js and CommonJS

These rules are specific to JavaScript running on Node.js or using CommonJS in the browser.

  • callback-return => callback-return (tslint-eslint-rules) TODO

    • Description: enforce return after a callback

    • Usage

      "callback-return": [
          true,
          [
            "callback",
            "cb",
            "next"
          ]
        ]
  • global-require => global-require (tslint-eslint-rules) TODO

    • Description: enforce require() on top-level module scope

    • Usage

      "global-require": true
  • handle-callback-err => handle-callback-err (tslint-eslint-rules)

    • Description: enforce error handling in callbacks

    • Usage

      "handle-callback-err": [
          true,
          "^(err|error|anySpecificError)$"
        ]
  • no-mixed-requires => no-mixed-requires (tslint-eslint-rules) TODO

    • Description: disallow mixing regular variable and require declarations

    • Usage

      "no-mixed-requires": [
          true,
          {
            "grouping": false
          }
        ]
  • no-new-require => no-new-require (tslint-eslint-rules) TODO

    • Description: disallow use of new operator with the require function

    • Usage

      "no-new-require": true
  • no-path-concat => no-path-concat (tslint-eslint-rules) TODO

    • Description: disallow string concatenation with __dirname and __filename

    • Usage

      "no-path-concat": true
  • no-process-env => no-process-env (tslint-eslint-rules) TODO

    • Description: disallow use of process.env

    • Usage

      "no-process-env": true
  • no-process-exit => no-process-exit (tslint-eslint-rules) TODO

    • Description: disallow process.exit()

    • Usage

      "no-process-exit": true
  • no-restricted-modules => no-restricted-modules (tslint-eslint-rules) TODO

    • Description: restrict Usage of specified node modules

    • Usage

      "no-restricted-modules": [
          true,
          [
            "fs",
            "cluster",
            "moduleName"
          ]
        ]
  • no-sync => no-sync (tslint-eslint-rules) TODO

    • Description: disallow use of synchronous methods

    • Usage

      "no-sync": true

Stylistic Issues

These rules are purely matters of style and are quite subjective.

  • array-bracket-spacing => array-bracket-spacing (tslint-eslint-rules)

    • Description: enforce spacing inside array brackets

    • Usage

      "array-bracket-spacing": [
          true,
          "always",
          {
            "singleValue": false,
            "objectsInArrays": false,
            "arraysInArrays": false
          }
        ]
      "array-bracket-spacing": [
          true,
          "never",
          {
            "singleValue": true,
            "objectsInArrays": true,
            "arraysInArrays": true
          }
        ]
  • block-spacing => block-spacing (tslint-eslint-rules)

    • Description: disallow or enforce spaces inside of single line blocks

    • Usage

      "block-spacing": [
          true,
          "always"
        ]
      "block-spacing": [
          true,
          "never"
        ]
  • brace-style => brace-style (tslint-eslint-rules)

    • Description: enforce one true brace style

    • Usage

      "brace-style": [
          true,
          "1tbs",
          {
            "allowSingleLine": true
          }
        ]
      "brace-style": [
          true,
          "stroustrup",
          {
            "allowSingleLine": true
          }
        ]
      "brace-style": [
          true,
          "allman",
          {
            "allowSingleLine": true
          }
        ]
  • camelcase => variable-name (native)

    • Description: require camel case names

    • Usage

      "variable-name": [
          true,
          "check-format"
        ]
  • comma-spacing => comma-spacing (tslint-eslint-rules) TODO

    • Description: enforce spacing before and after comma

    • Usage

      "comma-spacing": [
          true,
          {
            "before": false,
            "after": true
          }
        ]
  • comma-style => comma-style (tslint-eslint-rules) TODO

    • Description: enforce one true comma style

    • Usage

      "comma-style": [
          true,
          "first"
        ]
      "comma-style": [
          true,
          "last"
        ]
  • computed-property-spacing => computed-property-spacing (tslint-eslint-rules) TODO

    • Description: require or disallow padding inside computed properties

    • Usage

      "computed-property-spacing": [
          true,
          "always"
        ]
      "computed-property-spacing": [
          true,
          "never"
        ]
  • consistent-this => consistent-this (tslint-eslint-rules) TODO

    • Description: enforce consistent naming when capturing the current execution context

    • Usage

      "consistent-this": [
          true,
          "self"
        ]
  • eol-last => eol-last (tslint-eslint-rules) TODO

    • Description: enforce newline at the end of file, with no multiple empty lines

    • Usage

      "eol-last": [
          true,
          "unix"
        ]
      "eol-last": [
          true,
          "windows"
        ]
  • func-names => func-names (tslint-eslint-rules) TODO

    • Description: require function expressions to have a name

    • Usage

      "func-names": true
  • func-style => func-style (tslint-eslint-rules) TODO

    • Description: enforce use of function declarations or expressions

    • Usage

      "func-style": [
          true,
          "declaration"
          {
            "allowArrowFunctions": true
          }
        ]
      "func-style": [
          true,
          "expression"
          {
            "allowArrowFunctions": true
          }
        ]
  • id-blacklist => id-blacklist (tslint-eslint-rules) TODO

    • Description: disallow certain identifiers to prevent them being used

    • Usage

      "id-blacklist": [
          true,
          ["error", "data", "err", "e", "cb", "callback"]
        ]
  • id-length => id-length (tslint-eslint-rules) TODO

    • Description: this option enforces minimum and maximum identifier lengths (variable names, property names etc.)

    • Usage

      "id-length": [
          true,
          {
            "min": 2,
            "max": 10,
            "properties": "always",
            "exceptions": [ "x", "bolinha" ]
          }
        ]
      "id-length": [
          true,
          {
            "min": 2,
            "max": 10,
            "properties": "never",
            "exceptions": [ "x", "bolinha" ]
          }
        ]
  • id-match => id-match (tslint-eslint-rules) TODO

    • Description: require identifiers to match the provided regular expression

    • Usage

      "id-match": [
          true,
          "^[a-z]+([A-Z][a-z]+)*$",
          {
            "properties": false
          }
        ]
  • indent => indent (native)

    • Description: specify tab or space width for your code

    • Usage

      "indent": [
          true,
          "spaces"
        ]
      "indent": [
          true,
          "tabs"
        ]
  • jsx-quotes => jsx-quotes (tslint-eslint-rules) TODO

    • Description: specify whether double or single quotes should be used in JSX attributes

    • Usage

      "jsx-quotes": [
          true,
          "prefer-double"
        ]
      "jsx-quotes": [
          true,
          "prefer-single"
        ]
  • key-spacing => key-spacing (tslint-eslint-rules) TODO

    • Description: enforce spacing between keys and values in object literal properties

    • Usage

      "key-spacing": [
          true,
          {
            "align": "value",
            "beforeColon": false,
            "afterColon": true,
            "mode": "minimum"
          }
        ]
  • keyword-spacing => keyword-spacing (tslint-eslint-rules) TODO

    • Description: enforce spacing before and after keywords

    • Usage

      "keyword-spacing": [
          true,
          {
            "before": true,
            "after": true,
            "overrides": {
              "if": { "after": false },
              "for": { "after": false },
              "while": { "after": false }
            }
          }
        ]
  • linebreak-style => linebreak-style (tslint-eslint-rules) TODO

    • Description: disallow mixed 'LF' and 'CRLF' as linebreaks

    • Usage

      "linebreak-style": [
          true,
          "unix"
        ]
      "linebreak-style": [
          true,
          "windows"
        ]
  • lines-around-comment => lines-around-comment (tslint-eslint-rules) TODO

    • Description: enforce empty lines around comments

    • Usage

      "lines-around-comment": [
          true,
          {
            "beforeBlockComment": true,
            "afterBlockComment": false,
            "beforeLineComment": false,
            "afterLineComment": false,
            "allowBlockStart": false,
            "allowBlockEnd": false,
            "allowObjectStart": false,
            "allowObjectEnd": false,
            "allowArrayStart": false,
            "allowArrayEnd": false
          }
        ]
  • max-depth => max-depth (tslint-eslint-rules) TODO

    • Description: specify the maximum depth that blocks can be nested

    • Usage

      "max-depth": [
          true,
          10
        ]
      "max-depth": [
          true,
          {
            "maximum": 10
          }
        ]
  • max-len => max-len (tslint-eslint-rules) TODO

    • Description: specify the maximum length of a line in your program

    • Usage

      "max-len": [
          true,
          80,
          4,
          {
            "comments": 80,
            "ignoreComments": true
            "ignoreTrailingComments": true
            "ignoreUrls": true,
            "ignorePattern": true
          }
        ]
      "max-len": [
          true,
          {
            "code": 80,
            "comments": 80,
            "tabWidth": 4,
            "ignoreComments": true
            "ignoreTrailingComments": true
            "ignoreUrls": true,
            "ignorePattern": true
          }
        ]
  • max-nested-callbacks => max-nested-callbacks (tslint-eslint-rules) TODO

    • Description: specify the maximum depth callbacks can be nested

    • Usage

      "max-nested-callbacks": [
          true,
          3
        ]
  • max-params => max-params (tslint-eslint-rules) TODO

    • Description: specify the number of parameters that can be used in the function declaration

    • Usage

      "max-params": [
          true,
          2
        ]
      "max-params": [
          true,
          {
            "maximum": 2
          }
        ]
  • max-statements => max-statements (tslint-eslint-rules) TODO

    • Description: specify the maximum number of statement allowed in a function

    • Usage

      "max-statements": [
          true,
          10,
          {
            "ignoreTopLevelFunctions": true
          }
        ]
      "max-statements": [
          true,
          {
            "maximum": 10
          },
          {
            "ignoreTopLevelFunctions": true
          }
        ]
  • max-statements-per-line => max-statements-per-line (tslint-eslint-rules) TODO

    • Description: specify the maximum number of statements allowed per line

    • Usage

      "max-statements-per-line": [
          true,
          1
        ]
      "max-statements-per-line": [
          true,
          {
            "max": 1
          }
        ]
  • new-cap => Not applicable to TypeScript

    • Description: require a capital letter for constructors
  • new-parens => new-parens (tslint-eslint-rules) TODO

    • Description: disallow the omission of parentheses when invoking a constructor with no arguments

    • Usage

      "new-parens": true
  • newline-after-var => newline-after-var (tslint-eslint-rules) TODO

    • Description: require or disallow an empty newline after variable declarations

    • Usage

      "newline-after-var": [
          true,
          "never"
        ]
      "newline-after-var": [
          true,
          "always"
        ]
  • newline-before-return => newline-before-return (tslint-eslint-rules) TODO

    • Description: require newline before return statement

    • Usage

      "newline-before-return": true
  • newline-per-chained-call => newline-per-chained-call (tslint-eslint-rules) TODO

    • Description: enforce newline after each call when chaining the calls

    • Usage

      "newline-per-chained-call": [
          true,
          {
            "ignoreChainWithDepth": 3
          }
        ]
  • no-array-constructor => no-array-constructor (tslint-eslint-rules) TODO

    • Description: disallow use of the Array constructor

    • Usage

      "no-array-constructor": true
  • no-continue => no-continue (tslint-eslint-rules) TODO

    • Description: disallow use of the continue statement

    • Usage

      "no-continue": true
  • no-inline-comments => no-inline-comments (tslint-eslint-rules) TODO

    • Description: disallow comments inline after code

    • Usage

      "no-inline-comments": true
  • no-lonely-if => no-lonely-if (tslint-eslint-rules) TODO

    • Description: disallow if as the only statement in an else block

    • Usage

      "no-lonely-if": true
  • no-mixed-spaces-and-tabs => ident (native)

    • Description: disallow mixed spaces and tabs for indentation (recommended)

    • Usage

      "ident": "spaces"
      "ident": "tabs"

      Note: When using TSLint ident rule, it will enforce the consistent use of the chosen identation. The ESLint rule allows an option for Smart Tabs, but there are some open issues, and we're not going to support this.

  • no-multiple-empty-lines => no-multiple-empty-lines (tslint-eslint-rules) TODO

    • Description: disallow multiple empty lines

    • Usage

      "no-multiple-empty-lines": [
          true,
          {
            "max": 2,
            "maxEOF": 1
          }
        ]
  • no-negated-condition => no-negated-condition (tslint-eslint-rules) TODO

    • Description: disallow negated conditions

    • Usage

      "no-negated-condition": true
  • no-nested-ternary => no-nested-ternary (tslint-eslint-rules) TODO

    • Description: disallow nested ternary expressions

    • Usage

      "no-nested-ternary": true
  • no-new-object => no-new-object (tslint-eslint-rules) TODO

    • Description: disallow the use of the Object constructor

    • Usage

      "no-new-object": true
  • no-restricted-syntax => no-restricted-syntax (tslint-eslint-rules) TODO

    • Description: disallow use of certain syntax in code

    • Usage

      "no-restricted-syntax": [
          true,
          "FunctionExpression",
          "WithStatement"
        ]
  • no-spaced-func => no-spaced-func (tslint-eslint-rules) TODO

    • Description: disallow space between function identifier and application

    • Usage

      "no-spaced-func": true
  • no-ternary => no-ternary (tslint-eslint-rules) TODO

    • Description: disallow the use of ternary operators

    • Usage

      "no-ternary": true
  • no-trailing-spaces => no-trailing-whitespace (native)

    • Description: disallow trailing whitespace at the end of lines

    • Usage

      "no-trailing-whitespace": true
  • no-underscore-dangle => no-underscore-dangle (tslint-eslint-rules) TODO

    • Description: disallow dangling underscores in identifiers

    • Usage

      "no-underscore-dangle": [
          true,
          {
            "allow": ["foo_", "_bar"]
          }
        ]
  • no-unneeded-ternary => no-unneeded-ternary (tslint-eslint-rules) TODO

    • Description: disallow the use of ternary operators when a simpler alternative exists

    • Usage

      "no-unneeded-ternary": [
          true,
          {
            "defaultAssignment": true
          }
        ]
  • no-whitespace-before-property => no-whitespace-before-property (tslint-eslint-rules) TODO

    • Description: disallow whitespace before properties

    • Usage

      "no-whitespace-before-property": true
  • object-curly-spacing => object-curly-spacing (tslint-eslint-rules) TODO

    • Description: require or disallow padding inside curly braces

    • Usage

      "object-curly-spacing": [
          true,
          "always"
        ]
      "object-curly-spacing": [
          true,
          "never"
        ]
  • one-var => one-var (tslint-eslint-rules) TODO

    • Description: require or disallow one variable declaration per function

    • Usage

      "one-var": [
          true,
          "always"
        ]
      "one-var": [
          true,
          "never"
        ]
  • one-var-declaration-per-line => one-var-declaration-per-line (tslint-eslint-rules) TODO

    • Description: require or disallow a newline around variable declarations

    • Usage

      "one-var-declaration-per-line": [
          true,
          "always"
        ]
      "one-var-declaration-per-line": [
          true,
          "initializations"
        ]
  • operator-assignment => operator-assignment (tslint-eslint-rules) TODO

    • Description: require assignment operator shorthand where possible or prohibit it entirely

    • Usage

      "operator-assignment": [
          true,
          "always"
        ]
      "operator-assignment": [
          true,
          "never"
        ]
  • operator-linebreak => operator-linebreak (tslint-eslint-rules) TODO

    • Description: enforce operators to be placed before or after line breaks

    • Usage

      "operator-linebreak": [
          true,
          "before",
          {
            "overrides": { "?": "after"}
          }
        ]
      "operator-linebreak": [
          true,
          "after",
          {
            "overrides": { "?": "after"}
          }
        ]
      "operator-linebreak": [
          true,
          "none",
          {
            "overrides": { "?": "none", "+=": "none"}
          }
        ]
  • padded-blocks => padded-blocks (tslint-eslint-rules) TODO

    • Description: enforce padding within blocks

    • Usage

      "padded-blocks": [
          true,
          "always"
        ]
      "padded-blocks": [
          true,
          "never"
        ]
  • quote-props => quote-props (tslint-eslint-rules) TODO

    • Description: require quotes around object literal property names

    • Usage

      "quote-props": [
          true,
          "always"
        ]
      "quote-props": [
          true,
          "as-needed"
        ]
      "quote-props": [
          true,
          "consistent"
        ]
      "quote-props": [
          true,
          "consistent-as-needed"
        ]
  • quotes => quote-props (tslint-eslint-rules) TODO

    • Description: specify whether backticks, double or single quotes should be used

    • Usage

      "quotes": [
          true,
          "single"
        ]
      "quotes": [
          true,
          "single",
          "avoid-escape"
        ]
      "quotes": [
          true,
          "double"
        ]
      "quotes": [
          true,
          "double",
          "avoid-escape"
        ]
      "quotes": [
          true,
          "backtick"
        ]
      "quotes": [
          true,
          "backtick",
          "avoid-escape"
        ]
  • require-jsdoc => require-jsdoc (tslint-eslint-rules) TODO

    • Description: Require JSDoc comment

    • Usage

      "require-jsdoc": [
          true,
          {
            "require":
            {
              "FunctionDeclaration": true,
              "MethodDefinition": false,
              "ClassDeclaration": false
            }
          }
        ]
  • semi => semi (tslint-eslint-rules) TODO

    • Description: require or disallow use of semicolons instead of ASI

    • Usage

      "semi": [
          true,
          "always"
        ]
      "semi": [
          true,
          "never"
        ]
  • semi-spacing => semi-spacing (tslint-eslint-rules) TODO

    • Description: enforce spacing before and after semicolons

    • Usage

      "semi-spacing": [
          true,
          {
            "before": false,
            "after": true
          }
        ]
  • sort-imports => sort-imports (tslint-eslint-rules) TODO

    • Description: enforce sorting import declarations within module

    • Usage

      "sort-imports": [
          true,
          {
            "ignoreCase": false,
            "ignoreMemberSort": false,
            "memberSyntaxSortOrder: [
              "none",
              "all",
              "multiple",
              "single"
            ]
          }
        ]
  • sort-vars => sort-vars (tslint-eslint-rules) TODO

    • Description: sort variables within the same declaration block

    • Usage

      "sort-vars": [
          true,
          {
            "ignoreCase": false
          }
        ]
  • space-before-blocks => space-before-blocks (tslint-eslint-rules) TODO

    • Description: require or disallow a space before blocks

    • Usage

      "space-before-blocks": [
          true,
          "always"
        ]
      "space-before-blocks": [
          true,
          "never"
        ]
      "space-before-blocks": [
          true,
          {
            "functions": "never",
            "keywords": "always"
          }
        ]
  • space-before-function-paren => space-before-function-paren (tslint-eslint-rules) TODO

    • Description: require or disallow a space before function opening parenthesis

    • Usage

      "space-before-function-paren": [
          true,
          "always"
        ]
      "space-before-function-paren": [
          true,
          "never"
        ]
      "space-before-function-paren": [
          true,
          {
            "anonymous": "always",
            "named": "never"
          }
        ]
  • space-in-parens => space-in-parens (tslint-eslint-rules) TODO

    • Description: require or disallow spaces inside parentheses

    • Usage

      "space-in-parens": [
          true,
          "always"
        ]
      "space-in-parens": [
          true,
          "never"
        ]
  • space-infix-ops => space-infix-ops (tslint-eslint-rules) TODO

    • Description: require spaces around operators

    • Usage

      "space-infix-ops": [
          true,
          {
            "int32Hint": false
          }
        ]
  • space-unary-ops => space-unary-ops (tslint-eslint-rules) TODO

    • Description: require or disallow spaces before/after unary operators

    • Usage

      "space-unary-ops": [
          true,
          {
            "words": true,
            "nonwords": false
          }
        ]
  • spaced-comment => spaced-comment (tslint-eslint-rules) TODO

    • Description: require or disallow a space immediately following the // or /* in a comment

    • Usage

      "spaced-comment": [
          true,
          "always"
        ]
      "spaced-comment": [
          true,
          "never"
        ]
      "spaced-comment": [
          true,
          "always",
          {
            "exceptions": ["-", "+"]
          }
        ]
      "spaced-comment": [
          true,
          "always",
          {
            "line": {
              "markers": ["/"]
              "exceptions": ["-", "+"]
            },
            "block": {
              "markers": ["/"]
              "exceptions": ["-", "+"]
            }
          }
        ]
  • wrap-regex => wrap-regex (tslint-eslint-rules) TODO

    • Description: require regex literals to be wrapped in parentheses

    • Usage

      "wrap-regex": true

ECMAScript 6

These rules are only relevant to ES6 environments.

  • arrow-body-style => arrow-body-style (tslint-eslint-rules) TODO

    • Description: require braces in arrow function body

    • Usage

      "arrow-body-style": [
          true,
          "as-needed"
        ]
      "arrow-body-style": [
          true,
          "always"
        ]
  • arrow-parens => arrow-parens (tslint-eslint-rules) TODO

    • Description: require parens in arrow function arguments

    • Usage

      "arrow-parens": [
          true,
          "as-needed"
        ]
      "arrow-parens": [
          true,
          "always"
        ]
  • arrow-spacing => arrow-spacing (tslint-eslint-rules) TODO

    • Description: require space before/after arrow function's arrow

    • Usage

      "arrow-spacing": [
          true,
          {
            "before": true,
            "after": true
          }
        ]
  • constructor-super => constructor-super (tslint-eslint-rules) TODO

    • Description: verify calls of super() in constructors

    • Usage

      "constructor-super": true
  • generator-star-spacing => generator-star-spacing (tslint-eslint-rules) TODO

    • Description: enforce spacing around the * in generator functions

    • Usage

      "generator-star-spacing": [
          true,
          {
            "before": true,
            "after": true
          }
        ]
  • no-class-assign => no-class-assign (tslint-eslint-rules) TODO

    • Description: disallow modifying variables of class declarations

    • Usage

      "no-class-assign": true
  • no-confusing-arrow => no-confusing-arrow (tslint-eslint-rules) TODO

    • Description: disallow arrow functions where they could be confused with comparisons

    • Usage

      "no-confusing-arrow": [
          true,
          {
            "allowParens": false
          }
        ]
  • no-const-assign => no-const-assign (tslint-eslint-rules) TODO

    • Description: disallow modifying variables that are declared using const

    • Usage

      "no-const-assign": true
  • no-dupe-class-members => Not applicable to TypeScript

    • Description: disallow duplicate name in class members
  • no-duplicate-imports => no-duplicate-imports (tslint-eslint-rules) TODO

    • Description: disallow duplicate module imports

    • Usage

      "no-duplicate-imports": [
          true,
          {
            includeExports: true
          }
        ]
  • no-new-symbol => no-new-symbol (tslint-eslint-rules) TODO

    • Description: disallow use of the new operator with the Symbol object

    • Usage

      "no-new-symbol": true
  • no-restricted-imports => no-restricted-imports (tslint-eslint-rules) TODO

    • Description: restrict usage of specified modules when loaded by import declaration

    • Usage

      "no-restricted-imports": [
          true,
          "import1",
          "import2"
        ]
  • no-this-before-super => no-this-before-super (tslint-eslint-rules) TODO

    • Description: disallow use of this/super before calling super() in constructors.

    • Usage

      "no-this-before-super": true
  • no-useless-constructor => no-useless-constructor (tslint-eslint-rules) TODO

    • Description: disallow unnecessary constructor

    • Usage

      "no-useless-constructor": true
  • no-var => no-var-keyword (native)

    • Description: require let or const instead of var

    • Usage

      "no-var-keyword": true
  • object-shorthand => object-shorthand (tslint-eslint-rules) TODO

    • Description: require method and property shorthand syntax for object literals

    • Usage

      "object-shorthand": [
          true,
          "always"
        ]
      "object-shorthand": [
          true,
          "methods"
        ]
      "object-shorthand": [
          true,
          "properties"
        ]
      "object-shorthand": [
          true,
          "never"
        ]
  • prefer-arrow-callback => prefer-arrow-callback (tslint-eslint-rules) TODO

    • Description: suggest using arrow functions as callbacks

    • Usage

      "prefer-arrow-callback": true
  • prefer-const => prefer-const (tslint-eslint-rules) TODO

    • Description: suggest using const declaration for variables that are never modified after declared

    • Usage

      "prefer-const": true
  • prefer-reflect => prefer-reflect (tslint-eslint-rules) TODO

    • Description: suggest using Reflect methods where applicable

    • Usage

      "prefer-reflect": [
          true,
          {
            "exceptions": ["apply", "call", "defineProperty", "getOwnPropertyDescriptor", "getPrototypeOf", "setPrototypeOf", "isExtensible", "getOwnPropertyNames", "preventExtensions", "delete"]
          }
        ]
  • prefer-rest-params => prefer-rest-params (tslint-eslint-rules) TODO

    • Description: suggest using the rest parameters instead of arguments

    • Usage

      "prefer-rest-params": true
  • prefer-spread => prefer-spread (tslint-eslint-rules) TODO

    • Description: suggest using the spread operator instead of .apply().

    • Usage

      "prefer-spread": true
  • prefer-template => prefer-template (tslint-eslint-rules) TODO

    • Description: suggest using template literals instead of strings concatenation

    • Usage

      "prefer-template": true
  • require-yield => require-yield (tslint-eslint-rules) TODO

    • Description: disallow generator functions that do not have yield

    • Usage

      "require-yield": true
  • template-curly-spacing => template-curly-spacing (tslint-eslint-rules) TODO

    • Description: enforce spacing around embedded expressions of template strings

    • Usage

      "template-curly-spacing": [
          true,
          "always"
        ]
      "template-curly-spacing": [
          true,
          "never"
        ]
  • yield-star-spacing => yield-star-spacing (tslint-eslint-rules) TODO

    • Description: enforce spacing around the * in yield* expressions

    • Usage

      "yield-star-spacing": true

Contributing

Bugs, rules requests, doubts etc., open a Github Issue.

If you didn't find the rule, you can also create an ESLint custom rule for TSLint:

  • Open an issue asking for the rule
  • Fork this repository
  • Create a branch with the rule name, e.g: no-if-usage
  • Run npm install
  • Run gulp to run the tests and watch for file changes
  • Create your rule tests at ./src/test/rules and your rule in ./src/rules with the convetion:
    • Name: rule-name (hyphenated, e.g: no-if-usage)
    • File: ruleNameRule.ts (camelCased and with the Rule suffix, e.g: noIfUsageRule.ts)
    • Test File: ruleNameRuleTests.ts (camelCased and with the RuleTests suffix, e.g: noIfUsageRuleTests.ts)
  • Check if all the tests are passing
  • Commit the changes to your repo with the following convention:
    • Example: [feat] added use-isnan rule (closes #20)
  • Finally, open a Pull Request

You can also contribute with PRs for fixing bugs, or improving documentation, performance. The commit convention for these are, respectively:

  • Example: [bug] fixed no-constant-condition rule (closes #9)
  • Example: [docs] improved README.md file (closes #32)
  • Example: [perf] improved valid-typeof rule (closes #48)

LICENSE

MIT

About

Improve your TSLint with the missing ESLint rules

License:MIT License


Languages

Language:TypeScript 98.7%Language:JavaScript 1.3%