An open API service indexing awesome lists of open source software.

https://github.com/brunolm/tslint-config-codingwise

tslint config based on recommended with a few overrides
https://github.com/brunolm/tslint-config-codingwise

Last synced: 3 months ago
JSON representation

tslint config based on recommended with a few overrides

Awesome Lists containing this project

README

        

# tslint-config-codingwise

## Install

```bash
npm i -D tslint-config-codingwise
```

* requires `npm i -D tslint`

## Config

### Node

```json
{
"extends": "tslint-config-codingwise"
}
```

### Angular

```json
{
"extends": "tslint-config-codingwise/angular"
}
```

### React

```json
{
"extends": "tslint-config-codingwise/react"
}
```

## Rules

- [tslint:recommended](https://github.com/palantir/tslint/blob/2b8a7374cf0fa28e85d95beb40aafd7cb011d157/src/configs/recommended.ts)
- [tslint:react](https://github.com/palantir/tslint-react/blob/master/tslint-react.json)
- [tslint:codelyzer](https://github.com/mgechev/codelyzer)
- [tslint:prettier](https://github.com/alexjoverm/tslint-config-prettier)