tslint-config-prettier is a shareable TSLint configuration that disables all TSLint rules that conflict with Prettier, allowing you to use both tools together without clashes. Version 1.18.0 is the latest stable release, actively maintained until TSLint's deprecation. It bundles a CLI checker to identify conflicting rules in your config. It supports multiple TSLint rule set extensions including codelyzer, tslint-consistent-codestyle, tslint-eslint-rules, tslint-immutable, tslint-microsoft-contrib, and tslint-react. It is deprecated in favor of using ESLint with @typescript-eslint and eslint-config-prettier.
npm install tslint-config-prettierVerified import paths — ran on the pinned version, not inferred.
Install tslint and tslint-config-prettier, then extend your tslint.json placing tslint-config-prettier last.
Migrate from TSLint to ESLint. Consider using eslint-config-prettier.
Ensure the extends array ends with "tslint-config-prettier".
Install tslint: npm install --save-dev tslint
Run npm install --save-dev tslint
Verify the path: npx tslint-config-prettier-check ./tslint.json