UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

29 lines (25 loc) 764 B
import type { RuleConfig } from '../rule-config'; /** * Options. */ export type NoConstructorReturnOptions = []; /** * Disallow returning value from constructor. * * @see [no-constructor-return](https://eslint.org/docs/latest/rules/no-constructor-return) */ export type NoConstructorReturnRuleConfig = RuleConfig<NoConstructorReturnOptions>; /** * Disallow returning value from constructor. * * @see [no-constructor-return](https://eslint.org/docs/latest/rules/no-constructor-return) */ export interface NoConstructorReturnRule { /** * Disallow returning value from constructor. * * @see [no-constructor-return](https://eslint.org/docs/latest/rules/no-constructor-return) */ 'no-constructor-return': NoConstructorReturnRuleConfig; }