Skip to content

Instantly share code, notes, and snippets.

@ain
Last active December 18, 2015 11:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ain/5774202 to your computer and use it in GitHub Desktop.
Save ain/5774202 to your computer and use it in GitHub Desktop.
Regex for Netbeans' Ignored Files Pattern to make Travis CI dotfile visible
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!htaccess|jshintrc|DS_Store|gitattributes|gitignore$|.*\.yml$).*$
@bennycode
Copy link

Thanks for sharing this Gist but now my .editorconfig files are not visible anymore. 😀

Fixed it with:

^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!htaccess|editorconfig|jshintrc|DS_Store|gitattributes|gitignore$|.*\.yml$).*$

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment