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
- Host: GitHub
- URL: https://github.com/kaiza/tslint-jasmine-rules
- Owner: kaiza
- License: mit
- Created: 2016-08-25T09:44:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-04-09T06:32:30.000Z (about 3 years ago)
- Last Synced: 2025-03-21T20:48:32.415Z (about 2 months ago)
- Topics: jasmine, jasmine-tests, tslint, tslint-jasmine-rules, tslint-rules
- Language: TypeScript
- Size: 55.7 KB
- Stars: 9
- Watchers: 4
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-testsFixes are __not__ applied when `"severity": "warning"` is used.