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

https://github.com/kaiza/tslint-jasmine-rules

tslint rules for jasmine tests
https://github.com/kaiza/tslint-jasmine-rules

jasmine jasmine-tests tslint tslint-jasmine-rules tslint-rules

Last synced: 24 days ago
JSON representation

tslint rules for jasmine tests

Awesome Lists containing this project

README

        

# tslint-jasmine-rules

tslint rules for jasmine tests

## Install

`npm install tslint-jasmine-rules --save-dev`

Then reference the rules in your `tslint.json` and enable the rules you want:
```json
{
"extends": [
"tslint-jasmine-rules"
],
"rules":{
}
}
```

## Available rules

```json
{
"no-focused-tests": true,
"no-disabled-tests": true,
"expect-length": true
}
```

## Fixable

The following rules are fixable:
* no-focused-tests
* no-disabled-tests

Fixes are __not__ applied when `"severity": "warning"` is used.