David Sherret
David Sherret
I see, I'd still recommend just bumping the minor (0.94) and you don't need to bump the major as it will only eagerly pull in patch releases. The problem with...
That makes sense. Thanks!
dprint-plugin-markdown also has this for regions. It wouldn't be too difficult to add this. Essentially, detect one of these comments, then increment a count in the context, then format all...
This is the right place to ask this. It needs to be done per plugin. The CLI to plugin interface is really simple and is essentially just "here's a file...
Sorry for my delay. Do you mean the operator position? You can use the `"conditionalExpression.operatorPosition"` configuration for that (see https://dprint.dev/plugins/typescript/config/ and search for "operatorPosition"). Or are you wondering how to...
It seems doing `var x: any; export = x` is sometimes used to make a module have an `any` type (https://stackoverflow.com/a/31729755/188246 -- though, in this scenario since they're using an...
> So I think it stands to reason if you export = something that’s any, if you import * it you should get something like { default: any } @andrewbranch...
@andrewbranch it could be defined that way, but I think it would be nice if an `any` type were used that it could be anything since using a namespace import...
I mean, without affecting the importing code ~~(which would solve our case in Deno where we don't have control over the user's code)~~ (edit: nevermind, see next comment). For another...
Actually, I've discovered that #51321 is our main issue in Deno (related to the diagnostics I was getting earlier, but didn't investigate until now), so I don't really mind whatever...