• :warning: TSLint has been deprecated as of 2019. ... Navigate to your sources folder cd path/to/project #. Generate a basic configuration file tslint --init #.
  • TSLint's backers announced in 2019 that they would be deprecating TSLint in favor of supporting typescript-eslint in order to benefit the community.
  • There is a sandbox environment for TSLint at palantir.github.io/tslint-playground, which can be used to test rules and see how TSLint works.
    • Issues:
      1
    • Last commit:
      31 July 2020
  • TSLint Installation and Setup. First, let’s install TSLint and some TSLint extensions I personally prefer for React Native development.
  • The plugin always allows using the global version of TSLint. To use enable using a local TSLint install and custom rules from the workspace, you must either
  • This lets you apply a specific TSLint version or a specific set of plugins to each path in a monorepo or a project with multiple TSLint configurations.
  • Language / Framework: TypeScript Categories: Readability, Maintainability, Functionality TSLint Version: 5.17.0. TSLint is a linter for the TypeScript language.
  • This is done for security reasons. The extension always allows using globally installed versions of TSLint (npm install -g tslint).
  • Running tslint --init creates a tslint.json file in the project directory, which can be customized to define linting rules specific to the project.
  • -c, --config: The location of the configuration file that tslint will use to determine which rules are activated and what options to provide to the rules.