...
Your IDE relies on generated files for many tasks (e.g. code navigation, IntelliSense, debugging), and will complain unless you have re-generated those files.
If you need to re-generate all generated go files, use the slower
./dev gen go
If the above fails, run the slowest
./dev gen
to update all of your generated files.If this fails too, try
git clean
. If GOLAND complains about dependent packages, trygit clean -dfx pkg
instead. Then repeat the steps above.You may recall that with
make
, this step was not necessary. If you’re curious why, see this slack thread.
...