UNPKG

@antfu/eslint-define-config

Version:

Provide a defineConfig function for .eslintrc.js files

23 lines (20 loc) 700 B
import type { RuleConfig } from '../rule-config'; /** * Disallow calling a function with a value with type `any`. * * @see [no-unsafe-argument](https://typescript-eslint.io/rules/no-unsafe-argument) */ export type NoUnsafeArgumentRuleConfig = RuleConfig<[]>; /** * Disallow calling a function with a value with type `any`. * * @see [no-unsafe-argument](https://typescript-eslint.io/rules/no-unsafe-argument) */ export interface NoUnsafeArgumentRule { /** * Disallow calling a function with a value with type `any`. * * @see [no-unsafe-argument](https://typescript-eslint.io/rules/no-unsafe-argument) */ '@typescript-eslint/no-unsafe-argument': NoUnsafeArgumentRuleConfig; }