UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 682 B
import type { RuleConfig } from '../rule-config'; /** * Disallow deprecated `v-is` directive (in Vue.js 3.1.0+). * * @see [no-deprecated-v-is](https://eslint.vuejs.org/rules/no-deprecated-v-is.html) */ export type NoDeprecatedVIsRuleConfig = RuleConfig<[]>; /** * Disallow deprecated `v-is` directive (in Vue.js 3.1.0+). * * @see [no-deprecated-v-is](https://eslint.vuejs.org/rules/no-deprecated-v-is.html) */ export interface NoDeprecatedVIsRule { /** * Disallow deprecated `v-is` directive (in Vue.js 3.1.0+). * * @see [no-deprecated-v-is](https://eslint.vuejs.org/rules/no-deprecated-v-is.html) */ 'vue/no-deprecated-v-is': NoDeprecatedVIsRuleConfig; }