Ben Drucker
Ben Drucker
Since messages are assembled in code, just allowing a static replacement seems a bit confusing. Can you provide a real world example of how you'd use this?
Hmm, how about a custom URL that replaces the self-link to the TFLint docs? That way if you have custom rule configuration you can link to a custom document that...
Sounds good, an optional message that is printed after `\n\n` and the current text seems ok. Not of interest to me personally but happy to review a PR.
I'm potentially interested in this, quite a bit of ground work involved in making this possible though. [`hclwrite`](https://pkg.go.dev/github.com/hashicorp/hcl/v2/hclwrite) handles edits like this. I thought about it with #762 since it's...
Is this an actual problem or are you just getting this on `--version`? Are the plugins not installed/running correctly?
Ok cool, we can fix the issue with `--version`, just trying to make sure it's actually isolated there per the title and not affecting the bare command.
I added support for using readables as the body in https://github.com/feross/simple-get/pull/30. It's obviously not as elegant as piping to a stream returned by simple-get but that seemed like it would...
Mmm good point!
Shouldn't this only be happening with a 3xx status code? https://github.com/feross/simple-get/blob/master/index.js#L48 While POSTs aren't idempotent, it should be safe to send another request when the server specifically says so. It's...
Seems like that's 303-specific. 301 and 302 are not recommending for GET/HEAD only, which I'd agree with. I can't say I've ever seen an API that sends back 3xx codes...