Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit d557a34

Browse files
committed
Use optional properties for @typescript-eslint/no-explicit-any
1 parent 8f80421 commit d557a34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rules/typescript-eslint/no-explicit-any.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export type NoExplicitAnyOption = {
99
*
1010
* @default false
1111
*/
12-
fixToUnknown: boolean;
12+
fixToUnknown?: boolean;
1313
/**
1414
* Specify if arrays from the rest operator are considered okay.
1515
*
1616
* @default false
1717
*/
18-
ignoreRestArgs: boolean;
18+
ignoreRestArgs?: boolean;
1919
};
2020

2121
/**

0 commit comments

Comments
 (0)