Disable real-time error and warning checking in Eclipse

I find this distracting, that Eclipse checks the code for errors and warnings when typing. Is it possible to change this behavior so that it only checks when I finish writing a line?

+5
source share
2 answers

If you talked about java code, this flag can be found through "Settings - Java-Editor" → "Report input problems."

String tmp =             // no syntax error here
String tmp = ;           // line end -> syntax error

For other editors, use General - Editors - Structured Text Editors → Report Issues As You Type. No need to deactivate "build automatically."

+7
source

, . Project- > Build Automatically.

+1

All Articles