neume-network / neume-network/core
Come up with eslint rule that throws if function is labeled as `async` but doesn't use `await`
Open
Nobody has claimed this yet.
enhancement
good first issue
help wanted
- Dominant language
- JavaScript
- Stars
- 27
- Forks
- 11
- PR merge metrics
- No merged PRs in 30d
Description
- e.g. we use
asynchere but we don't useawaitin the function's body: https://github.com/neume-network/extraction-worker/blob/cafba34b36422afb488f9b43af8934d8363ea655/src/worker.mjs#L47 - So we should have an eslint everywhere to catch this kind of problem
/cc @il3ven because you had set up https://github.com/neume-network/strategies/pull/78
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the example in extraction-worker/src/worker.mjs at line 47 and inspect the ESLint setup referenced by strategies PR #78. Determine where a shared rule would live and how rules are tested. Done means ESLint reports async functions whose bodies contain no await, while leaving functions that do use await unflagged.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- eslint, javascript
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100