MyEclipse Two methods of canceling verification of JS
Font: [Increase decrease] type: Reprint
Through the JS write a Web project related pages feel very card, modify memory is not the following two solutions, you can try to
Preface: Sometimes we write a Web project through JS to feel very card page, modify the memory is not the following two ways to solve:
1. Select the current project-properties-myeclipse-validation-excluded resource to find the files or folders that need to be invalidated.
2. Locate the validation information that is configured in the. project file below the project path. Remove the following lines
Copy the code code as follows:
<buildCommand>
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
<arguments>
</arguments>
</buildCommand>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
The former method is not very practical, after choosing to remove the validation, the validation window will still pop up, and save the project will still be re-verified, the verification process is also very slow. Therefore, it is recommended that the latter, after removing these lines of configuration restart MyEclipse, you will be asked whether you want to restore the JavaScript verification, select No.
MyEclipse Two methods of canceling verification of JS