How to disable error parsing in a specific file type in NetBeans

In my project, I have several .md files that should not be processed as code files (PHP project). I have error icons everywhere because there are β€œerrors” in these files. Is there a way to disable error checking in specific files or the entire file type?

I really do not want to completely exclude this file from the project. I hope that it is possible to simply disable error checking in these files.

+8
php netbeans
source share
1 answer

Go to "Tools-> Options", then go to the "Miscellaneous" tab, and then the "Files" tab. Click "Create" next to the file extension and add md , then select text/plain .

Or right below you can add .*\.md to your ignored file template. If you do this, the files will not be displayed in Netbeans at all.

+11
source share

All Articles