0.2.0 • Published 5 years ago
@pamls/tslint-config v0.2.0
ESLint Configuration for TypeScript
Installation
npm i --save-dev @pamls/tslint-configIntegration in TypeScript project
Install tslint and tslint configuration
npm i --save-dev tslint @pamls/tslint-configAdd TSLint configuration
Add a .tslintrc.json file in the root directory of the project
{
"extends": "@pamls/tslint-config"
}Run the linter
tslint -c .tslintrc.json src/**/*.ts test/**/*.ts