Skip to content

Commit e3e0329

Browse files
committed
fix up linting
1 parent f334727 commit e3e0329

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

explorer-nextjs/.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": ["next/core-web-vitals"]
2+
"extends": ["next/core-web-vitals"],
3+
"rules": {
4+
"react-hooks/exhaustive-deps": "off"
5+
}
36
}

sdk/typescript/packages/react-components/.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"allowConstantExport": true
1616
}
1717
],
18-
"@typescript-eslint/no-explicit-any": "warn"
18+
"@typescript-eslint/no-explicit-any": "off",
19+
"react-hooks/exhaustive-deps": "off"
1920
}
2021
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
declare type FCWithChildren<P = {}> = React.FC<React.PropsWithChildren<P>>;
1+
declare type FCWithChildren<P = Object> = React.FC<React.PropsWithChildren<P>>;

sdk/typescript/tests/integration-tests/mix-fetch/template/webpack/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../../../../../../tsconfig.json",
2+
"extends": "../../../../../tsconfig.json",
33
"compilerOptions": {
44
"module": "ESNext",
55
"outDir": "./dist"

0 commit comments

Comments
 (0)