UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 666 B
import type { RuleConfig } from '../rule-config'; /** * Enforce valid `.sync` modifier on `v-bind` directives. * * @see [valid-v-bind-sync](https://eslint.vuejs.org/rules/valid-v-bind-sync.html) */ export type ValidVBindSyncRuleConfig = RuleConfig<[]>; /** * Enforce valid `.sync` modifier on `v-bind` directives. * * @see [valid-v-bind-sync](https://eslint.vuejs.org/rules/valid-v-bind-sync.html) */ export interface ValidVBindSyncRule { /** * Enforce valid `.sync` modifier on `v-bind` directives. * * @see [valid-v-bind-sync](https://eslint.vuejs.org/rules/valid-v-bind-sync.html) */ 'vue/valid-v-bind-sync': ValidVBindSyncRuleConfig; }