https://github.com/feflow/tslint-config-ivweb
TSLint shareable config for the IVWEB TypeScript style guide.
https://github.com/feflow/tslint-config-ivweb
Last synced: 11 months ago
JSON representation
TSLint shareable config for the IVWEB TypeScript style guide.
- Host: GitHub
- URL: https://github.com/feflow/tslint-config-ivweb
- Owner: feflow
- Created: 2019-07-26T02:53:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-04T11:23:39.000Z (almost 7 years ago)
- Last Synced: 2025-06-28T20:17:22.645Z (12 months ago)
- Language: JavaScript
- Size: 46.9 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tslint-config-ivweb
[](https://www.npmjs.org/package/tslint-config-ivweb)
[](https://npmjs.org/package/tslint-config-ivweb)
TSLint shareable config for the IVWEB TypeScript style guide.
## Installation
```
$ npm install --save-dev tslint typescript tslint-config-ivweb
```
## Usage
Once the `tslint-config-ivweb` package is installed, you can use it by specifying `ivweb`.
create `tslint.config` and copy this.
```js
{
"extends": ["tslint-config-ivweb"],
"linterOptions": {
"exclude": ["**/node_modules/**"]
},
"rules": {
// your own special config rule
}
}
```
### use in cli
```
./node_modules/.bin/tslint ./**/*.ts
```
### use in vscode
- install tslint plugin
- use `Cmd +` or `Ctrl +`
- set `tslint.autoFixOnSave` as `true`
### use in webstorm
- open setting
- search `tslint`
- set `enable` as true, and chose `Search for tslint.json`