Elon Volo

Results 28 comments of Elon Volo

Thanks @Daniel15 for looking into this, and I'd be happy to be a community maintainer on the project! Not having to moderate/curate large amounts of changes between two codebases would...

I submitted it last night. Did it not go through?

``` class Bar extends Foo { override foo(); } ``` foo() needs curly braces, or else it can't be found by the query. Otherwise the whole thing comes back unmodified....

There's a few other typos. This works for me to reproduce. ``` import { Transform } from 'jscodeshift'; const transform: Transform = (file, api) => { const j = api.jscodeshift;...

This reproduces it for me. ``` import { Transform } from 'jscodeshift'; const transform: Transform = (file, api) => { const j = api.jscodeshift; const root = j.withParser('ts')(file.source); root.find(j.ClassMethod).forEach(path =>...

``` class Bar extends Foo { override foo(); } ``` Needs curly braces, or else it can't be found by the query. On Tue, Jul 19, 2022 at 8:54 PM...

Just commenting off the top of my head, I believe that ``` whatever/**/* ``` Is most utilities' glob syntax for "get absolutely everything under whatever". The reasons for the different...

Would you be able to up to github a temporary repository that reproduces the error?