Skip to content

Commit 297f0b5

Browse files
committed
fix: silence eslint for new markdown snippets
1 parent 2be0653 commit 297f0b5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sources/academy/tutorials/node_js/multiple-runs-scrape.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Here’s the breakdown of the necessary input:
6060
</TabItem>
6161
<TabItem value="main.ts" label="main.ts">
6262

63+
<!-- eslint-disable @typescript-eslint/no-explicit-any -->
6364
```ts
6465
import { Actor, log } from 'apify';
6566
@@ -103,6 +104,7 @@ const dataset = await Actor.openDataset();
103104
The Orchestrator Actor will maintain the state of the scraping runs to track progress and manage continuity. It will record the state of Actor runs, initializing this tracking with the first run.
104105
This persistent state ensures that, in migration or restart (resurrection) cases, the Actor can resume the same runs without losing progress.
105106
107+
<!-- eslint-disable react-hooks/rules-of-hooks -->
106108
```ts
107109
import { Actor, log } from 'apify';
108110

0 commit comments

Comments
 (0)