UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 643 B
import type { RuleConfig } from '../rule-config'; /** * Apply jsonc rules similar to your configured ESLint core rules. * * @see [auto](https://ota-meshi.github.io/eslint-plugin-jsonc/rules/auto.html) */ export type AutoRuleConfig = RuleConfig<[]>; /** * Apply jsonc rules similar to your configured ESLint core rules. * * @see [auto](https://ota-meshi.github.io/eslint-plugin-jsonc/rules/auto.html) */ export interface AutoRule { /** * Apply jsonc rules similar to your configured ESLint core rules. * * @see [auto](https://ota-meshi.github.io/eslint-plugin-jsonc/rules/auto.html) */ 'jsonc/auto': AutoRuleConfig; }