diff --git a/explorer-nextjs/.eslintrc.json b/explorer-nextjs/.eslintrc.json index 957cd1545e..f76f0a2b73 100644 --- a/explorer-nextjs/.eslintrc.json +++ b/explorer-nextjs/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["next/core-web-vitals"] + "extends": ["next/core-web-vitals"], + "rules": { + "react-hooks/exhaustive-deps": "off" + } } diff --git a/sdk/typescript/packages/react-components/.eslintrc.json b/sdk/typescript/packages/react-components/.eslintrc.json index 6ad06640c9..a75c205a3e 100644 --- a/sdk/typescript/packages/react-components/.eslintrc.json +++ b/sdk/typescript/packages/react-components/.eslintrc.json @@ -15,6 +15,7 @@ "allowConstantExport": true } ], - "@typescript-eslint/no-explicit-any": "warn" + "@typescript-eslint/no-explicit-any": "off", + "react-hooks/exhaustive-deps": "off" } } diff --git a/sdk/typescript/packages/sdk-react/src/typings/FC.d.ts b/sdk/typescript/packages/sdk-react/src/typings/FC.d.ts index 08ebdfa298..2e2f5b39e1 100644 --- a/sdk/typescript/packages/sdk-react/src/typings/FC.d.ts +++ b/sdk/typescript/packages/sdk-react/src/typings/FC.d.ts @@ -1 +1 @@ -declare type FCWithChildren
= React.FC = React.FC