UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 737 B
import type { RuleConfig } from '../rule-config'; /** * Disallow whitespace before properties. * * @see [no-whitespace-before-property](https://eslint.org/docs/latest/rules/no-whitespace-before-property) */ export type NoWhitespaceBeforePropertyRuleConfig = RuleConfig<[]>; /** * Disallow whitespace before properties. * * @see [no-whitespace-before-property](https://eslint.org/docs/latest/rules/no-whitespace-before-property) */ export interface NoWhitespaceBeforePropertyRule { /** * Disallow whitespace before properties. * * @see [no-whitespace-before-property](https://eslint.org/docs/latest/rules/no-whitespace-before-property) */ 'no-whitespace-before-property': NoWhitespaceBeforePropertyRuleConfig; }