Skip to content

Commit 02fbd41

Browse files
authored
Fix ref forwarding (#4)
1 parent 6065c5f commit 02fbd41

File tree

6 files changed

+3047
-2808
lines changed

6 files changed

+3047
-2808
lines changed

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
}
5555
],
5656
"import/order": "warn",
57-
"no-console": "warn"
57+
"no-console": "warn",
58+
"react/prop-types": "off"
5859
},
5960
"overrides": [
6061
{

.vscode/launch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@
1010
"request": "launch",
1111
"runtimeArgs": [
1212
"--inspect-brk",
13-
"${workspaceRoot}/node_modules/.bin/jest",
13+
"${workspaceRoot}/node_modules/jest/bin/jest",
1414
"--runInBand",
1515
"--watch"
1616
],
1717
"console": "integratedTerminal",
1818
"internalConsoleOptions": "neverOpen",
19+
"disableOptimisticBPs": true,
1920
"port": 9229
2021
}
2122
]

0 commit comments

Comments
 (0)