How to delay Eclipse error warnings

I found Eclipse error warnings useful. But the problem is that they appear too early when I am still typing and have not finished the line of code at hand. This is distracting. How can I postpone error warnings so that they do not appear until I finish the line and move to the next line?

+5
source share
1 answer

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."

The answer from this similar question from proko

+2
source

All Articles