This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ts = require('typescript'); | |
const Lint = require('tslint'); | |
/** | |
* TSLint Check to disallow fdescribe and fit | |
* | |
* Usage in tslint.json: "no-jasmine-focus": true | |
*/ | |
class Rule extends Lint.Rules.AbstractRule { | |
/** |