UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 716 B
import type { RuleConfig } from '../rule-config'; /** * Enforce that each component should be in its own file. * * @see [one-component-per-file](https://eslint.vuejs.org/rules/one-component-per-file.html) */ export type OneComponentPerFileRuleConfig = RuleConfig<[]>; /** * Enforce that each component should be in its own file. * * @see [one-component-per-file](https://eslint.vuejs.org/rules/one-component-per-file.html) */ export interface OneComponentPerFileRule { /** * Enforce that each component should be in its own file. * * @see [one-component-per-file](https://eslint.vuejs.org/rules/one-component-per-file.html) */ 'vue/one-component-per-file': OneComponentPerFileRuleConfig; }