ignorepatterns
Version:
A regular expression that matches common filenames that we want to ignore
31 lines (27 loc) • 521 B
text/typescript
export default /^((~|\.#).*|.*(~|\.swp)|\.(svn|git|hg|DS_Store)|node_modules|CVS|thumbs\.db|desktop\.ini)$/i
/*
^(
# Paths that start with something
(
~| # vim, gedit, etc
\.# # emacs
).*|
# Paths that end with something
.*(
~| # vim, gedit, etc
\.swp # vi
)|
# Paths that start with a dot and end with something
\.(
svn|
git|
hg|
DS_Store
)|
# Paths that match any of the following
node_modules|
CVS|
thumbs\.db|
desktop\.ini
)$
*/