-
Hey, I have troubles getting
In the config, I try to exclude this file: issues:
exclude-dirs:
- "gui" If I understand the FAQ correctly, the
We are using the Help is really appreciated! Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hello,
Excluding has never worked: most linters were not working and all the reports were ignored.
As explained inside the doc, if using CGO, ensure all required system libraries are installed. So yes you should install g++, or create a custom Docker image with Also locally (and inside the container) you have missing system libraries, so you must install them too. In summary, you should install the same things that are required to build your program. |
Beta Was this translation helpful? Give feedback.
I found another trick, you can add the following build constraints inside the
.cpp
files inside./gui
://go:build cpp
If you put this comment on top of the following files every works as expected: