eslint-config-galex
Version:
personal ESLint ruleset of galex
9 lines (8 loc) • 587 B
TypeScript
import { type Dependencies, type ESLintConfig, type TopLevelESLintConfig } from '../types';
/**
* @see https://www.npmjs.com/org/testing-library
*/
export declare const testingLibFamily: string[];
export declare const detectEnv: (dependencies: Dependencies, customEnv?: ESLintConfig['env']) => Required<TopLevelESLintConfig['env']>;
export declare const detectParserOptions: (customParserOptions?: ESLintConfig['parserOptions']) => Required<TopLevelESLintConfig['parserOptions']>;
export declare const detectPlugins: (dependencies: Dependencies, customPlugins?: string[]) => string[];