UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 857 B
import type { RuleConfig } from '../rule-config'; /** * Disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+). * * @see [no-deprecated-slot-scope-attribute](https://eslint.vuejs.org/rules/no-deprecated-slot-scope-attribute.html) */ export type NoDeprecatedSlotScopeAttributeRuleConfig = RuleConfig<[]>; /** * Disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+). * * @see [no-deprecated-slot-scope-attribute](https://eslint.vuejs.org/rules/no-deprecated-slot-scope-attribute.html) */ export interface NoDeprecatedSlotScopeAttributeRule { /** * Disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+). * * @see [no-deprecated-slot-scope-attribute](https://eslint.vuejs.org/rules/no-deprecated-slot-scope-attribute.html) */ 'vue/no-deprecated-slot-scope-attribute': NoDeprecatedSlotScopeAttributeRuleConfig; }