UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 873 B
import type { RuleConfig } from '../rule-config'; /** * Requires that all function `@property` tags have names. * * @see [require-property-name](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-name.md#repos-sticky-header) */ export type RequirePropertyNameRuleConfig = RuleConfig<[]>; /** * Requires that all function `@property` tags have names. * * @see [require-property-name](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-name.md#repos-sticky-header) */ export interface RequirePropertyNameRule { /** * Requires that all function `@property` tags have names. * * @see [require-property-name](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-property-name.md#repos-sticky-header) */ 'jsdoc/require-property-name': RequirePropertyNameRuleConfig; }