Benjamin Herman

Results 12 issues of Benjamin Herman

"Fallthrough is not allowed" is flagged after making a call to a function with the return type `never`. ```ts switch (mode) { default: throwError("Invalid mode"); // Flagged for fallthrough case...

bug
design limitation

JSDoc in question: ```js /** * [BLAKE2b] hash algorithm implemented in WebAssembly. * * ```js * const message = new TextEncoder().encode("hello") * new Blake2b(32) * .update(message) * .digest(); * //...

**Is Your Feature Request Related to a Problem? Please Describe** Mounted dependency drives—frontends, web components, modules, databases, etc.—don't scale well. If common users aren't typically visiting a mounted dependency and...

feature request

I am looking to add functionality for volunteer archival in an app, in such a way that the user can specify an arbitrary amount of space, and the application will...

Changes the `signOut` method to wait for [GoogleAuth.disconnect](https://developers.google.com/identity/sign-in/web/reference#googleauthdisconnect) to resolve before resolving itself. This fixes the bug where calling `isSignedIn` immediately after awaiting `signOut` would return true.

**Describe the bug** Method calls from a `Hyperdrive` instance hang indefinitely if the Hyperdrive Daemon was stopped or crashed. Because the `HyperdriveClient` is **To Reproduce** Node REPL with `--experimental-repl-await` flag...

**Describe the bug** Daemon crashes when `Hyperdrive.mount` from the HyperdriveClient API is called with bad arguments. Nothing is stored in `~/.hyperdrive/output.log`. **To Reproduce** ```javascript const { HyperdriveClient } = require("hyperdrive-daemon-client");...

I am unclear if this is intended behavior or not. e.g., PSR2EmptyFunction disabled: ```php function foo() { } function bar(int $baz, string $qux) { noop(); } ``` PSR2EmptyFunction enabled: ```php...

e.g., Before formatting: ```php function foo() { bar( baz: 42, qux: 'hello', corge: [1, 2, 3], empty: false, ); bar(baz: 42, qux: 'hello', corge: [1, 2, 3], empty: true); }...

e.g., `IndentTernaryConditions` disabled: ```php function multiline_parameters( string $first, ?string $second, int $third, ): ?string { return $first == $second ? $third : null; } ``` `IndentTernaryConditions` enabled: ```php function multiline_parameters(...