A TSLint formatter that outputs errors and warnings in a file:line:col format suitable for Visual Studio Code's problem matcher. Version 2.1.0 is the final release of a package that has been effectively superseded by ESLint/tslint-deprecation. The package has a low maintenance cadence and is tied to legacy TSLint peer dependencies (^4.2.0 or ^5.2.0). Its key differentiator is producing VSCode-compatible output with severity labels, but it is now considered obsolete due to the TSLint deprecation.
npm install tslint-formatter-vscodeNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to use the formatter programmatically by passing the formatter name to TSLint's run function.
Migrate to ESLint and use eslint-formatter-vscode or eslint-formatter-unix.
Install tslint: npm install tslint --save-dev
Update any custom parsers to expect the new format: '$file ($line,$col): warning TSLINT: $message ($ruleName)'.
npm install tslint-formatter-vscode --save-dev
Ensure formattersDirectory points to the directory containing the package (e.g., './node_modules/tslint-formatter-vscode')
Update tslint to version ^5.2.0 or later