diff --git a/packages/eslint-plugin/docs/rules/no-throw-literal.md b/packages/eslint-plugin/docs/rules/no-throw-literal.md index 6a017d5ac4b..9fb71fcbe49 100644 --- a/packages/eslint-plugin/docs/rules/no-throw-literal.md +++ b/packages/eslint-plugin/docs/rules/no-throw-literal.md @@ -94,7 +94,7 @@ throw new CustomError(); This rule adds the following options: ```ts -interface Options extends BaseNoShadowOptions { +interface Options { /** * Whether to always allow throwing values typed as `any`. */ @@ -107,7 +107,6 @@ interface Options extends BaseNoShadowOptions { } const defaultOptions: Options = { - ...baseNoShadowDefaultOptions, allowThrowingAny: false, allowThrowingUnknown: false, };