@elsikora/eslint-config
Version:
ESLint configuration vision of ElsiKora
8 lines (7 loc) • 449 B
TypeScript
import type { Linter } from "eslint";
/**
* Formats ESLint configurations by remapping plugin names and rule prefixes according to PLUGIN_MAP.
* @param {Array<Linter.Config>} configs - Array of ESLint flat configurations to process
* @returns {Array<Linter.Config>} Array of formatted ESLint configurations with updated plugin names and rule prefixes
*/
export declare function formatConfig(configs: Array<Linter.Config>): Array<Linter.Config>;