eslint-plugin-jest-runner-groups-validator
Version:
Validates that Jest runner groups applied to test files are from a known set
17 lines (14 loc) • 437 B
TypeScript
import * as ESLintModule from 'eslint';
import * as ESTreeModule from 'estree';
declare namespace ESTree {
type Program = ESTreeModule.Program;
type Comment = ESTreeModule.Comment;
type Location = ESTreeModule.SourceLocation;
}
declare namespace ESLint {
namespace Rule {
type RuleModule = ESLintModule.Rule.RuleModule;
type RuleContext = ESLintModule.Rule.RuleContext;
}
}
export as namespace JRGV;