Tim Ruffles

Results 10 issues of Tim Ruffles

eslint uses a pretty simple algorithm to work out where the 'project' lives - and node_modules for plugins/configs are loaded relative to - [`__dirname + '/../../..'`](https://github.com/eslint/eslint/blob/b201e17bba079c50a7b48e25a349d6e94e7c84f8/lib/config/config-file.js#L330). This means using prettier-eslint-cli's...

Unless I'm missing something, `superforumla.size()` does not meanifully equate to 'squared pixels'. A circle with a given area (is that what 'square pixels' should be interpreted as?) is waaaaaaaay bigger...

Allows you to filter for being near to things (or not near things). I found it allowed some fun behaviour! e.g 'if house is not within x squares of water,...

foos and bars are horrible in example code as it gives no context on _why_ you'd do something.

enhancement

I'm having the following errors: ERROR in node_modules/@ngrx/core/src/compose.ts (12,43): Rest parameter 'functions' implicitly has an 'any[]' type. node_modules/@ngrx/core/src/compose.ts (13,19): Parameter 'arg' implicitly has an 'any' type. when using this repo...

The filter options look designed to allow you to have different configurations per endpoint. However, the filters are applied after the request/response recording is set up. Therefore: ``` slogchi.NewWithConfig(slog, slogchi.Config{...

Leaving additional finalizers around consumes memory (to store the finalizer), and has a runtime cost (there's a single runtime go-routine which loops over all finalizers). They can be cleaned up...

as noted in #181, the comment stating "parser.Close() will be called by Go's garbage collector and users would not have to call this manually" is too optimistic.

Currently, unless Go GC is frequent, the finalizers may not run, and thus the sitter C types will not be freed. Critically, if the bulk of a program's allocations comes...