Daniel X Moore

Results 77 issues of Daniel X Moore

### Environment Local ESLint version: v9.8.0 ### What parser are you using? Default (Espree) ### What did you do? ```js /*eslint no-unused-expressions: "error"*/ f(), g() ``` ### What did you...

bug
rule
repro:yes

I would expect: ```civet a |> b .c .d ``` To become: ```javascript b.c(a).d ``` Instead of: ```javascript b.c(a); ($) => $.d; ``` And related: ```civet a |> b .c...

Trying to merge the TypeScript TextMate grammar and an updated CoffeeScript grammar seems like it would be an unspeakable nightmare. So it would be nice if the Civet parser /...

lsp
syntax highlighting

## Description Fix TS types for `onChange`, allowing `string` and non-async functions.

When mixing `::` types and default values in function arguments `spacing` is type `unknown` when we could probably infer it as `number`. ```civet export function DisplayOptions({ stage, position:: Vec2, options::...

enhancement
typescript

```civet class Type name: string = "unknown" emoji: string = "❓" description: string = "" @({@name, @emoji, @description}) ``` It would be neat to use the types of the instance...

enhancement
typescript