It looks like _aot_generated/* files were generated (I tried a quick search, but mostly cmake/make files were showing up, so I am unsure what generated them at this point).
A comment might look like this:
// Code generated by <command>! DO NOT EDIT.
Where <command> is an actual command/script that was responsible for this file.
(This is a Go's standard format ^// Code generated .* DO NOT EDIT\.$)
This solves 2 issues:
- It will be easier to find the code that generates these files
- The editor will warn on an editing attempt on these files (and maybe we can filter-out those results from the global search if plugin helps a bit here)
It looks like
_aot_generated/*files were generated (I tried a quick search, but mostly cmake/make files were showing up, so I am unsure what generated them at this point).A comment might look like this:
(This is a Go's standard format
^// Code generated .* DO NOT EDIT\.$)This solves 2 issues: