eslint-plugin-sonarjs
Version:
SonarJS rules for ESLint
11 lines (10 loc) • 306 B
TypeScript
import type { TSESLint } from '@typescript-eslint/utils';
type Options = [{
threshold?: number;
ignoreStrings?: string;
} | undefined, 'sonar-runtime'] | [{
threshold?: number;
ignoreStrings?: string;
} | undefined];
declare const rule: TSESLint.RuleModule<string, Options>;
export = rule;