UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 548 B
import type { RuleConfig } from '../rule-config'; /** * Do not use deprecated APIs. * * @see [deprecation](https://github.com/gund/eslint-plugin-deprecation) */ export type DeprecationRuleConfig = RuleConfig<[]>; /** * Do not use deprecated APIs. * * @see [deprecation](https://github.com/gund/eslint-plugin-deprecation) */ export interface DeprecationRule { /** * Do not use deprecated APIs. * * @see [deprecation](https://github.com/gund/eslint-plugin-deprecation) */ 'deprecation/deprecation': DeprecationRuleConfig; }