UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 738 B
import type { RuleConfig } from '../rule-config'; /** * Require prop type to be a constructor. * * @see [require-prop-type-constructor](https://eslint.vuejs.org/rules/require-prop-type-constructor.html) */ export type RequirePropTypeConstructorRuleConfig = RuleConfig<[]>; /** * Require prop type to be a constructor. * * @see [require-prop-type-constructor](https://eslint.vuejs.org/rules/require-prop-type-constructor.html) */ export interface RequirePropTypeConstructorRule { /** * Require prop type to be a constructor. * * @see [require-prop-type-constructor](https://eslint.vuejs.org/rules/require-prop-type-constructor.html) */ 'vue/require-prop-type-constructor': RequirePropTypeConstructorRuleConfig; }