Skip to content

Commit

Permalink
chore: remove biome lint rule noExplicitAny
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkaxis committed Oct 3, 2023
1 parent 1fc1071 commit 4505b80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"recommended": true,
"suspicious": {
"noEmptyInterface": "off",
"noExplicitAny": "off",
"noArrayIndexKey": "off"
},
"a11y": {
Expand Down
1 change: 1 addition & 0 deletions packages/docs/src/mdx/Formik.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const Block = styled.div`

interface FormikDemoProps {
readonly children?: ReactNode
// biome-ignore lint/suspicious/noExplicitAny: should be fixed separately
readonly initialValues: any
}

Expand Down
2 changes: 2 additions & 0 deletions packages/docs/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@ export interface PropItem {
readonly required: boolean
readonly type: PropItemType
readonly description: string
// biome-ignore lint/suspicious/noExplicitAny: should be fixed separately
readonly defaultValue: any
}

export interface PropItemType {
readonly name: string
// biome-ignore lint/suspicious/noExplicitAny: should be fixed separately
readonly value?: any
readonly raw?: string
}

0 comments on commit 4505b80

Please sign in to comment.