From 85996d78d03071fa8caf3d16f466b198f49127cb Mon Sep 17 00:00:00 2001 From: mho22 Date: Fri, 21 Mar 2025 20:16:25 +0100 Subject: [PATCH] fix(eslint-plugin): [no-unsafe-function-type] remove fixable property --- packages/eslint-plugin/src/rules/no-unsafe-function-type.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/eslint-plugin/src/rules/no-unsafe-function-type.ts b/packages/eslint-plugin/src/rules/no-unsafe-function-type.ts index 4d0cee981ec6..e5d1ab273550 100644 --- a/packages/eslint-plugin/src/rules/no-unsafe-function-type.ts +++ b/packages/eslint-plugin/src/rules/no-unsafe-function-type.ts @@ -12,7 +12,6 @@ export default createRule({ description: 'Disallow using the unsafe built-in Function type', recommended: 'recommended', }, - fixable: 'code', messages: { bannedFunctionType: [ 'The `Function` type accepts any function-like value.',