eslint-plugin-sonarjs
Version:
SonarJS rules for ESLint
8 lines (7 loc) • 454 B
TypeScript
import type { Rule } from 'eslint';
import type estree from 'estree';
import type { ParserServicesWithTypeInformation } from '@typescript-eslint/utils';
import ts from 'typescript';
export declare function isImported(context: Rule.RuleContext): boolean;
export declare function isAssertion(context: Rule.RuleContext, node: estree.Node): boolean;
export declare function isTSAssertion(services: ParserServicesWithTypeInformation, node: ts.Node): boolean;