MaatDeamon
MaatDeamon

Reputation: 9771

Error in intellij Idea

I have an eclipse background. Something that i noticed recently is that it is not easy to spot files that contains error in the navigator view of Intellij (scala). In eclipse those file are highlighted in red.

Is there something similar, a configuration similar that can tell you when there is problems? (without having to open windows on your own)

Many thanks,

-M-

Upvotes: 0

Views: 69

Answers (1)

radai
radai

Reputation: 24202

unlike eclipse, intellij does not compile the whole project all of the time, so it cannot maintain a list of "issues" as eclipse does.

you can either build your project (build --> rebuild project) in which case it'll fail and list the errors, or run inspections on the entire project (analyze --> inspect code) which will find warnings on top of errors.

Upvotes: 1

Related Questions