grundic
grundic

Reputation: 4921

How to view all errors in the project

I would like to see all compilation/syntax errors in a single list, so it would be easier to understand what should be fixed. I would describe it like something similar to vim`s quickfix window.

Currently I'm using Analyze -> Inspect Code..., but it lists all inspections, which could be sometimes too much. I can probably configure different profiles for inspections and switch between them, but probably there is some other approach which I miss?

Upvotes: 3

Views: 3325

Answers (2)

dlsniper
dlsniper

Reputation: 7477

The question is unclear so I'll answer the two possible questions.

For IntelliJ IDEA you can use Build | Build Project.

For Go functionality / GoLand, you cannot use this, it's not supported. Follow https://youtrack.jetbrains.com/issue/GO-4618 for updates there.

Upvotes: 3

yole
yole

Reputation: 97328

When you run Build | Build Project, the Messages toolwindow will display the list of all compilation errors.

Upvotes: 3

Related Questions