Skip to content

Commit c59aca0

Browse files
Fix lint errors (#11381)
1 parent 7580c2c commit c59aca0

File tree

128 files changed

+103
-1607
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+103
-1607
lines changed

.eslintrc

+11-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@
99
"files": ["**/__tests__/**"],
1010
"plugins": ["jest"],
1111
"extends": ["plugin:jest/recommended"]
12+
},
13+
{
14+
"files": ["integration/**/*.*"],
15+
"rules": {
16+
"react-hooks/rules-of-hooks": "off"
17+
},
18+
"env": {
19+
"jest/globals": false
20+
}
1221
}
13-
]
22+
],
23+
"reportUnusedDisableDirectives": true
1424
}

integration/defer-test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ const MANUAL_FALLBACK_ID = "MANUAL_FALLBACK_ID";
2323
const MANUAL_ERROR_ID = "MANUAL_ERROR_ID";
2424

2525
declare global {
26-
// eslint-disable-next-line prefer-let/prefer-let
2726
var __deferredManualResolveCache: {
2827
nextId: number;
2928
deferreds: Record<

integration/helpers/cf-template/.gitignore

-8
This file was deleted.

integration/helpers/cf-template/app/root.tsx

-33
This file was deleted.

integration/helpers/cf-template/app/routes/_index.tsx

-41
This file was deleted.

integration/helpers/cf-template/package.json

-32
This file was deleted.
Binary file not shown.

integration/helpers/cf-template/remix.config.js

-21
This file was deleted.

integration/helpers/cf-template/remix.env.d.ts

-8
This file was deleted.

integration/helpers/cf-template/server.ts

-53
This file was deleted.

integration/helpers/cf-template/tsconfig.json

-22
This file was deleted.

integration/helpers/cf-template/wrangler.toml

-9
This file was deleted.

integration/helpers/deno-template/.gitignore

-6
This file was deleted.

integration/helpers/deno-template/app/root.tsx

-34
This file was deleted.

integration/helpers/deno-template/app/routes/_index.tsx

-42
This file was deleted.

integration/helpers/deno-template/package.json

-28
This file was deleted.
Binary file not shown.

integration/helpers/deno-template/remix.config.js

-17
This file was deleted.

0 commit comments

Comments
 (0)