Search code examples
javascriptidetypescriptwebstormtslint

How to ignore a particular directory or file for tslint?


The IDE being used is WebStorm 11.0.3, the tslint is configured and works, but, it hangs because it tries to parse large *.d.ts library files.

Is there a way to ignore a particular file or directory?


Solution

  • Update for tslint v5.8.0

    As mentioned by Saugat Acharya, you can now update tslint.json CLI Options:

    {
      "extends": "tslint:latest",
      "linterOptions": {
          "exclude": [
              "bin",
              "lib/*generated.js"
          ]
      }
    }
    

    More information in this pull request.


    This feature has been introduced with tslint 3.6

    tslint \"src/**/*.ts\" -e \"**/__test__/**\"
    

    You can now add --exclude (or -e) see PR here.

    CLI

    usage: tslint [options] file ...
    
    Options:
    
    -c, --config          configuration file
    --force               return status code 0 even if there are lint errors
    -h, --help            display detailed help
    -i, --init            generate a tslint.json config file in the current working directory
    -o, --out             output file
    -r, --rules-dir       rules directory
    -s, --formatters-dir  formatters directory
    -e, --exclude         exclude globs from path expansion
    -t, --format          output format (prose, json, verbose, pmd, msbuild, checkstyle)  [default: "prose"]
    --test                test that tslint produces the correct output for the specified directory
    -v, --version         current version
    

    you are looking at using

    -e, --exclude         exclude globs from path expansion