I have installed Eclipse for PHP Developers (Oxygen package). I am not getting error messages for javascript. (for example, it is not showing error or warning even if semi-column for some lines are missing or statements like x=x is present)
I have referred this question . Accordingly, enabled all the validations.
Still Eclipse does not show warnings or error for javascript. I did clean build also but it did not help. For php, it is working fine.
Could anyone help me to know what I am doing wrong with the configuration.
EDIT: Errors are missing for files with js extension. Attaching sample file content below (content of a file test.js)
var test = 'hello';
test = test;
var test2 = 'e'
alert('hello');