An ESLint plugin providing linting rules for async functions, specifically focusing on missing await expressions. Version 0.1.1 is the latest and only stable release. It is a small, early-stage plugin with limited rules (e.g., 'missing-await-in-async-fn'). No recent updates; development appears stagnant.
npm install eslint-plugin-asyncVerified import paths — ran on the pinned version, not inferred.
Shows configuration enabling the missing-await rule, which warns if an async function does not use await.
Consider using eslint-plugin-unicorn's 'no-empty-await' or custom rules instead.
Alternatively, use ESLint's built-in 'require-await' rule (ESLint >= 3.11.0) which also catches functions that can be synchronous.
Ensure rules are under 'rules' key: {"rules": {"async/missing-await-in-async-fn": 1}}Run 'npm install --save-dev eslint-plugin-async' in your project.
No dependency data recorded yet.