Using TSLint Code Quality Tool
This feature is supported in the Ultimate edition only.
On this page:
Introduction
IntelliJ IDEA provides facilities to run TypeScript-specific code quality inspections through integration with the TSLint code verification tool. This tool registers itself as a IntelliJ IDEA code inspection: it checks TypeScript code for most common mistakes and discrepancies without running the application. When the tool is activated, it launches automatically on the edited TypeScript file. Discrepancies are highlighted and reported in pop-up information windows, a pop-up window appears when you hover the mouse pointer over a stripe in the Validation sidebar. You can also press Alt+Enter to examine errors and apply suggested quick fixes. Learn more about inspections and intention actions at Code Inspection and Intention Actions.
Before you start
- The TSLint tool is run through NodeJS, therefore make sure the NodeJS runtime environment is downloaded and installed on your computer. The runtime environment also contains the Node Package Manager(npm) through which TSLint is installed.
- Integration with NodeJS and NPM is supported through the NodeJS plugin. The plugin is not bundled with IntelliJ IDEA, but it can be installed from the JetBrains plugin repository as described in Installing, Updating and Uninstalling Repository Plugins and Enabling and Disabling Plugins.
Installing TSLint
- Open the Settings / Preferences Dialog by pressing Ctrl+Alt+S or by choosing for Windows and Linux or for OS X, and click Node.js and NPM under Languages & Frameworks.
-
On the Node.js and NPM page that opens, the Packages area shows all the Node.js-dependent packages
that are currently installed on your computer, both at the global and at the project level.
Click
.
-
In the Available Packages dialog box that opens, select the
tslint
package and click Install Package.
Learn more about installing tools through NPM in Installing and Removing External Software Using Node Package Manager.
Activating and configuring the TSLint tool
-
Open the Settings / Preferences Dialog by pressing Ctrl+Alt+S or by choosing for Windows and Linux or
for OS X.
Expand the Languages&Frameworks node, and then click TSLint under TypeScript.
- On the TSLint page that opens, select the Enable check box. After that all the controls in the page become available.
- Specify the location of the Node.js executable file and the path to the tslint package.
-
In the Configuration File area, appoint the configuration to use.
By default, IntelliJ IDEA first looks for a
tslint.json
configuration file. IntelliJ IDEA starts the search from the folder where the file to be checked is stored, then searches in the parent folder, and so on until reaches the project root. If notslint.json
file is found, TSLint uses its default embedded configuration file. Accordingly, you have to define the configuration to apply either in atslint.json
configuration file, or in a custom JSON configuration file, or rely on the default embedded configuration.-
To have IntelliJ IDEA look for a
tslint.json
file, choose the Search for tslint.json option. If notslint.json
file is found, the default embedded configuration file will be used. -
To use a custom file, choose the Configuration File option and specify the location fo the file in the Path field. Choose the path from the drop-down list,
or type it manually, or click the
button and select the relevant file from the dialog box that opens.
-
To have IntelliJ IDEA look for a
-
If necessary, in the Additional Rules Directory field,
specify the location of the files with additional code verification rules.
These rules will be applied after the rules from
tslint.json
or the above specified custom configuration file and accordingly will override them.