Brian Donovan

Results 80 comments of Brian Donovan

So you have a codemod which doesn't alter the AST, but the files are still being modified? I've seen things like that and they're typically bugs in [recast](https://github.com/benjamn/recast). Can you...

This seems to happen even with something as small as this: ```js class A { a = {}; } ``` which becomes this: ```js class A { a = {};}...

When I need to do more debugging I use the built-in debugging in VS Code, which just hooks into the default `node --inspect-brk` support. I'm not sure whether it makes...

This is due to the difference in the way recast and babel handle comments. [You can use `@resugar/helper-comments` to do the path replacement](https://github.com/resugar/resugar/blob/d5689e3a74dd05edb6449e90ff4a7eb1f5629a18/packages/resugar-helper-comments/src/index.ts#L13-L47) which will handle preserving comments for you....

@vignesh1001 I have no write access to this repository and am not a maintainer of it. You'd be better off asking @vojtajina.

Yes, please do a release! I can help if desired.

Looks like `BindExpression` can be checked off after https://github.com/cst/cst/pull/121.

I know I proposed eliminating the rule altogether, but I'd settle for a softening of the language to make it less absolute. Something like this: > Group your shorthand properties...

> Leaving parts of a style guide up to subjectivity entirely defeats the purpose of having one. I get where you're coming from with that, and in general I agree....

Looks like the bug is in `MainStage` since the output of `NormalizeStage` looks okay.