Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have a bunch of malformed XML files used in unit tests to check if our application can handle them.

Eclipse marks this XML files with errors, polluting the "problem view".

Is there a way to exclude a specific folder from Eclipse validators?

share|improve this question

2 Answers

up vote 30 down vote accepted

In the Validation section of Window > Preferences you can add different rules in settings (...) column, you can add a "Folder or file name rule" in the Exclude Group for XML types.

share|improve this answer

This is what I do to exclude a folder from validation in a project. For me this works for javascript and other warnings/errors.

  • Right Click Folder
  • Click Resource, ResourceFilters
  • Click "Add"
  • Set the following Exclude All, Files and Folders, All Children, add an asterisk (*) to the File and Folder Attributes input field (highlighted in the image below)

enter image description here

share|improve this answer
1  
This will exclude the folder from the resource tree, not only from validation. – Serhii Mar 22 '12 at 11:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.