Michael Hadley
Michael Hadley
Hey all, thanks for making a note about this. I'll try to explain some more. One goal with the plugin is that it would never produce a warning (or auto-fix),...
While were clarifying things, is `setState` always async? ~~Looks to be that way since it both takes a callback, and also listens for `stateChanged` in `metal-state`.~~ Nevermind, looks like it...
My understanding is that they would be exposed so that they can still be initialized externally. Either way, it seems like if we made this kind of change, it would...
@pragmaticivan So the idea is that `Config.string()` is optional, so the valid values are `undefined`, `null`, or a `string`. However if it is configured as `Config.string().required()`, only a `string` is...
I'm also running into issue #2 that @mulias described. I also agree that it seems like `elm-typescript-interop` needs to walk the import tree of each "main" to determine which ports...
Looks like we have [test coverage for computed properties](https://github.com/mthadley/eslint-plugin-sort-destructure-keys/blob/ccb0d52cb48a55668aff209e1cec4197a16bd23b/tests/lib/rules/sort-destructure-keys.js#L229). I tried copying your example code into the tests, but didn't observe any errors. @ckruppe Any other info you can provide,...
@ckruppe No problem on the delayed response. I took a look at reproducing errors with the code snippet you shared and `@typescript-eslint/parser`, but didn't have any luck. [You can see...
Closing since it has been a while, but folks can open a new issue with more information if it is still happening.
I've published `v1.5.0` which should hopefully allow many of these cases to now be sortable. If you run into any problems, please open a new issue and we'll sort it...
I believe I ran into something similar. For me, the solution was to use the older regexp engine: ```vimscript set regexpengine=1 ``` I guess the newer one doesn't play nice...