Kurt Preston

Results 9 issues of Kurt Preston

First off, thanks so much! I love this project. Sometimes, I'll activate KeepingYouAwake indefinitely while working on something, then manually put my computer to sleep when done. A few times,...

### Description **prefer-array-some** checks for situations in which `Array.filter(...).length > 0` and `Array.find(...) != null` could be better written as `Array.some(...)` It would be useful to also check for a...

enhancement
help wanted

I have the following TypeScript code: ```typescript import * as $MyJsonFile from './myJsonFile.json'; export const MyJsonFile = $MyJsonFile; ``` The `prefer-export-from` rule wants me to change the line to ```typescript...

bug

The following line should be valid: ```typescript const myFunc = () => ( [].map((x) => x) ); ``` However, `no-map-without-usage` cannot detect that a value is being returned.

Hey, great package! Recently noticed an issue where zenscroll will not successfully scroll to any element contained in a `position: relative` div. Demo here: http://requirebin.com/?gist=ae3708359c2ad71651d03fb9bdfc9115 In it, you will see...

Hey, finally switched from my forked repo back to your Pitchfinder and realized I had forgotten to export some types.

**Is your feature request related to a problem? Please describe.** Excel functions can return arrays. Excel supports the ability to write the results of these functions to multiple cells. A...

The latest spec allows support for named anchors: https://json-schema.org/understanding-json-schema/structuring.html#using-id-with-ref For example, named anchors would allow the following to compile: ```json { "$id": "#myName", "properties": { "myProp": { "$ref": "#myName" }...

enhancement
external

When I try using `PathOf`, it gives me the error: ``` Generic type 'PathOf' requires 22 type argument(s). ``` Sample code: ```typescript const x = { a: 1 }; type...