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

坚强是说给别人听的谎言 提交于 2019-12-05 01:57:38
Tho

I found a solution to hide all parser errors in folder node_modules from this link: How do I Ignore the build folder in NetBeans 'Find In Projects'?

But it will make Netbeans hides node_modules from project tree

Steps:

  1. Tools > Options Miscellaneous
  2. Goto Files tab
  3. Add "node_modules" in Ignored Files Pattern box. For example:

^(node_modules|CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!(taccess|git.+|hgignore)$).*$

  1. Save
Mbotet

Just a reminder: Ignoring folders will not display them any longer either and you wont be able to see it or search on it (until you enable it again of course). The filter for the extension works but will filter every single file with this extension, which problably isn't what you want either. If you just want to remove badges in a directory (recursive) without disabling it you just CAN'T. This issue was reported to netbeans and they provide the same incomplete solutions. https://netbeans.org/bugzilla/show_bug.cgi?id=226954

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!