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

Commit 4505b80

Browse files
committed
chore: remove biome lint rule noExplicitAny
1 parent 1fc1071 commit 4505b80

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

biome.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"recommended": true,
1010
"suspicious": {
1111
"noEmptyInterface": "off",
12-
"noExplicitAny": "off",
1312
"noArrayIndexKey": "off"
1413
},
1514
"a11y": {

packages/docs/src/mdx/Formik.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const Block = styled.div`
2828

2929
interface FormikDemoProps {
3030
readonly children?: ReactNode
31+
// biome-ignore lint/suspicious/noExplicitAny: should be fixed separately
3132
readonly initialValues: any
3233
}
3334

packages/docs/src/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ export interface PropItem {
3030
readonly required: boolean
3131
readonly type: PropItemType
3232
readonly description: string
33+
// biome-ignore lint/suspicious/noExplicitAny: should be fixed separately
3334
readonly defaultValue: any
3435
}
3536

3637
export interface PropItemType {
3738
readonly name: string
39+
// biome-ignore lint/suspicious/noExplicitAny: should be fixed separately
3840
readonly value?: any
3941
readonly raw?: string
4042
}

0 commit comments

Comments
 (0)