UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 804 B
import type { RuleConfig } from '../rule-config'; /** * Reports invalid alignment of JSDoc block asterisks. * * @see [check-alignment](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-alignment.md#repos-sticky-header) */ export type CheckAlignmentRuleConfig = RuleConfig<[]>; /** * Reports invalid alignment of JSDoc block asterisks. * * @see [check-alignment](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-alignment.md#repos-sticky-header) */ export interface CheckAlignmentRule { /** * Reports invalid alignment of JSDoc block asterisks. * * @see [check-alignment](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-alignment.md#repos-sticky-header) */ 'jsdoc/check-alignment': CheckAlignmentRuleConfig; }