Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set Netbeans Action Item filters to ignore third party folders?

I do not want to see errors and warnings for third party libraries in Netbeans Action Items list, so I created a filter as shown below:

Filters to ignore vendor and node_modules folders

The filter is turned on, but I still see many items from node_modules folders. What am I doing wrong? How should the filter be configured to ignore everything coming from node_modules and vendor folders?

like image 956
JustAMartin Avatar asked Jul 30 '15 10:07

JustAMartin


1 Answers

A workaround for this is hiding node_modules from project tree

Steps:

  1. Tools > Options Miscellaneous
  2. Goto Files tab
  3. Add "node_modules" to the regex in Ignored Files Pattern box. Here's an example:
^(node_modules|git.+|hgignore)$).*$
  1. Save
like image 135
Tho Avatar answered Oct 07 '22 23:10

Tho