silverwind
silverwind
BTW for generated file detection, there is a common pattern to mark them as such via `.gitattributes` as [invented by GitHub](https://docs.github.com/en/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github), which is arguably much better than magic string detection...
See kubernetes as one example that has `go` files in `linguist-generated`: https://github.com/kubernetes/kubernetes/blob/master/.gitattributes
Having configurability via `.gitattributes` would certainly be nice for `gofumpt`, but what I was really after in the original issues is to have some ability to skip over `node_modules` and...
> I'm surprised to hear code generators like vfsgen are still being used, now that go:embed has existed for a while :) I see I never answered: `vfsgen` still brings...
Do the go ignores always exactly intersect with gofumpt ignores? I think not. For example consider the following use case: You have a vendored file that you want to preserve...
This kind of "one tooling fits all" mentality is why I dislike the go ecosystem. I prefer tools that are standalone and have their own configs without such dependencies like...
I think I'll go another route with the CLI testing and avoid the child processes, which is both faster and ioredis-mock data can persists for the lifetime of the testing...
It should be made possible to import htmx in ESM without any globals. It can be done by placing a suitable ESM file in the package and pointing to it...
I think it's correct. The bulk of react is in `react-dom`.
Yes, automatic detection based on filename would be my request in this case. I suppose not all languages mix well together, so it should only be enabled for known template...