Skip to content

pullrequests Search Results · user:sindresorhus language:swift archived:false is:public language:Rust language:JavaScript

Filter by

11.9k results  (271 ms)

11.9k results

insindresorhus (press backspace or delete to remove)

Right now wait-for-localhost runs a fixed number (6) of attempts over HTTP1 before switching to HTTP2. This causes it to fail to wait for an HTTP1 server which takes a little longer to be up and running. ...

Fixes #132 This restores connection status listeners in the background worker. When the browser reports that it is online again, the extension runs an update immediately instead of waiting for the next ...

Fixes #37 Summary - Adds an awesome-header-image rule for the funded IssueHunt issue. - Lints the first non-badge header image and accepts SVG/SVGZ/data SVG or raster images that are at least 2x ...

Adds bulk entries to the interactive process search so filtered results can be killed together: - show an All matching processes entry when a search returns multiple processes - show All name processes ...

Closes #1661 What this does Adds the no-top-level-side-effects rule that disallows statements that execute code at module load time. Files with no exports are ignored Files without any export statement ...

Fixes #1661. This adds a new no-top-level-side-effects rule that reports side-effectful top-level expression statements in exported modules. The implementation follows the constraints discussed in the ...

Fixes #1661 This adds a new no-top-level-side-effects rule that reports top-level side-effect statements in modules with exports, while ignoring files without exports and hashbang files. Covered cases ...

- Closes #16 - Adds support for non-async iterable web streams (Safari iOS and Desktop) by converting stream to async iterable - Add test for web stream non-async readable

Summary - extend no-for-loop to detect full-array loops that compare with !== array.length - support inclusive end bounds like index = array.length - 1 and array.length - 1 = index - keep partial ...