eslint-plugin-no-floating-promise icon indicating copy to clipboard operation
eslint-plugin-no-floating-promise copied to clipboard

Detects missing await on async function calls

Results 10 eslint-plugin-no-floating-promise issues
Sort by recently updated
recently updated
newest added

Bumps [flat](https://github.com/hughsk/flat) to 5.0.2 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `flat` from 4.1.0 to 5.0.2 Commits e5ffd66 Release 5.0.2 fdb79d5 Update dependencies, refresh...

dependencies

If I have a function that has at the end of it a promise. Example ```js document.getElementById('button').addEventListener('click', () => { // do stuff asynFunc(); }); ``` I want to ignore...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

I'm making this PR on behalf of Javier since I noticed they forked this repo to add this functionality and never upstreamed their change I haven't merged this PR because...

The popular VS Code plugin is failing with this plugin. It doesn't like the entry point specification ``` "main": "lib/index.js", ``` Changing this to ``` "main": "./lib/index.js", ``` fixes the...

The following is an extraordinarily common pattern that this plugin seems to not register as a warning / error, but almost always is: ```javascript function WaitForIt() { return new Promise(r,...

Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2. Release notes Sourced from glob-parent's releases. v5.1.2 Bug Fixes eliminate ReDoS (#36) (f923116) Changelog Sourced from glob-parent's changelog. 5.1.2 (2021-03-06) Bug Fixes eliminate ReDoS...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.19 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....

dependencies

This works and is detected: ```js async function a() {}; a(); ``` But this is not detected (and passes): ```js const a = async () => {}; a(); ```