@antfu/eslint-define-config
Version:
Provide a defineConfig function for .eslintrc.js files
23 lines (20 loc) • 879 B
TypeScript
import type { RuleConfig } from '../rule-config';
/**
* Disallow spaces around equal signs in attribute.
*
* @see [no-spaces-around-equal-signs-in-attribute](https://eslint.vuejs.org/rules/no-spaces-around-equal-signs-in-attribute.html)
*/
export type NoSpacesAroundEqualSignsInAttributeRuleConfig = RuleConfig<[]>;
/**
* Disallow spaces around equal signs in attribute.
*
* @see [no-spaces-around-equal-signs-in-attribute](https://eslint.vuejs.org/rules/no-spaces-around-equal-signs-in-attribute.html)
*/
export interface NoSpacesAroundEqualSignsInAttributeRule {
/**
* Disallow spaces around equal signs in attribute.
*
* @see [no-spaces-around-equal-signs-in-attribute](https://eslint.vuejs.org/rules/no-spaces-around-equal-signs-in-attribute.html)
*/
'vue/no-spaces-around-equal-signs-in-attribute': NoSpacesAroundEqualSignsInAttributeRuleConfig;
}