We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1838990 commit 0c44930Copy full SHA for 0c44930
package.json
@@ -65,6 +65,9 @@
65
"plugin:import/typescript"
66
],
67
"rules": {
68
+ "@typescript-eslint/prefer-optional-chain": "off",
69
+ "@typescript-eslint/no-explicit-any": "off",
70
+ "@typescript-eslint/no-unsafe-member-access": "off",
71
"@typescript-eslint/prefer-includes": "off",
72
"import/prefer-default-export": "off",
73
"import/no-unassigned-import": "off",
src/helpers.ts
@@ -4,6 +4,7 @@ const TEXT_NODE = 3
4
5
function jestFakeTimersAreEnabled() {
6
/* istanbul ignore else */
7
+ // eslint-disable-next-line
8
if (typeof jest !== 'undefined' && jest !== null) {
9
return (
10
// legacy timers
0 commit comments