Skip to content

Commit

Permalink
fix: Remove timeout in ESLint plugin (#6124)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Aug 20, 2024
1 parent 9f698d6 commit 6539722
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const optionsSchema = JSON.parse(readFileSync(pathJoin(__dirname, '../../assets/
const schema = optionsSchema as unknown as Rule.RuleMetaData['schema'];

// eslint-disable-next-line n/no-missing-require
const spellCheck = createSyncFn<SpellCheckFn>(require.resolve('../worker/worker.mjs'), 30_000);
const spellCheck = createSyncFn<SpellCheckFn>(require.resolve('../worker/worker.mjs'));

interface ExtendedSuggestion {
/**
Expand Down

0 comments on commit 6539722

Please sign in to comment.