tslint-config-blvd
✨ A TSLint config that conforms to the blvd TypeScript styleguide.
Installation
Install tslint
and tslint-config-blvd
using yarn:
yarn add --dev tslint tslint-config-blvd
or, for npm:
npm install --save-dev tslint tslint-config-blvd
Usage
In your tsconfig.json
file, extend tslint-config-blvd
.
{
"extends": "tslint-config-blvd"
}
React rules
We've also included a separate config for React projects. In your tsconfig.json
file, extend tslint-config-blvd/react
.
{
"extends": ["tslint-config-blvd/react"]
}