@intellihr/standard-tslint
v2.1.1
Published
intelliHR Standard Code Style for TSLint
Downloads
420
Readme
standard-tslint
intelliHR Standard Code Style for TSLint (TypeScript)
Getting Started
Install required packages
yarn add --dev @intellihr/standard-tslint tslint tslint-config-prettier tslint-react # or npm install --dev @intellihr/standard-tslint tslint tslint-config-prettier tslint-react
Create
tslint.json
in your project{ "extends": ["@intellihr/standard-tslint"] }
You can modify the configs to suit your project
{ "extends": ["@intellihr/standard-tslint"], "linterOptions": { "exclude": [ "config/**/*.js", "node_modules/**/*.ts" ] } }
CI & Release
Create PR against master
. A new version of standard-tslint will be released after the PR is merged.
Useful Commands
Lint
yarn lint