Last active
March 20, 2025 21:17
-
-
Save AndyDaSilva52/1e0a7e8bf628ebccc5fa6e1971b0a480 to your computer and use it in GitHub Desktop.
MuleSoft loose - Suppresses various folder and files related to MuleSoft Project using Anypoint Studio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This is a directory/file filter template for WinMerge | |
name: MuleSoft loose | |
desc: Suppresses various folder and files related to MuleSoft Project using Anypoint Studio | |
## Select if filter is inclusive or exclusive | |
## Inclusive (loose) filter lets through all items not matching rules | |
## Exclusive filter lets through only items that match to rule | |
## include or exclude | |
def: include | |
## Filters for filenames begin with f: | |
## Filters for directories begin with d: | |
## To exclude some of the files that match the f: pattern, specify f!: | |
## To exclude some of the folders that match the d: pattern, specify d!: | |
## (Inline comments begin with " ##" and extend to the end of the line) | |
## f: \.ext$ ## Filter for filename | |
## d: \\subdir$ ## Filter for directory | |
f: \.(vs[sp])?scc$ ## Visual SourceSafe files | |
## Ignore Java class and jar files | |
f: \.class$ | |
f: \.jar$ | |
## Ignore subversion housekeeping folders | |
d: \\.svn$ | |
d: \\._svn$ | |
## Ignore Java class and jar files | |
f: \.class$ | |
f: \.jar$ | |
f: \\.class$ | |
f: \\.$ | |
f: \\org.eclipse.$ | |
## Ignore subversion housekeeping folders | |
d: \\.svn$ | |
d: \\._svn$ | |
d: \\\.svn$ ## Subversion working copy | |
d: \\_svn$ ## SVN working copy ASP.NET | |
d: \\cvs$ ## CVS control directory | |
d: \\.git$ ## Git directory | |
d: \\\.git$ ## Git directory | |
d: \\\.bzr$ ## Bazaar branch | |
d: \\\.hg$ ## Mercurial repository | |
d: \\target | |
d: \\bin | |
d: \\htdocs | |
d: \\logs | |
d: \\manual | |
d: \\cgi-bin | |
d: \\.$ | |
d: \\org.eclipse.$ | |
d: \\.apt_generated | |
d: \\.settings | |
d: \\temp | |
## Ignore Mule | |
d: \\.mule | |
d: \\reports | |
f: \.classpath$ | |
# Einstein For Developers Extension for VSCode | |
d: \\.sfdx | |
# Anypoint Code Builder | |
d: \\.tooling-project | |
f: \.bak$ | |
f: \.bak$ | |
## d: \\src\main\resources\weave\autogenerated$ | |
d: src\\main\\resources\\weave\\autogenerated$ | |
d: src\\main\\resources\\weave$ | |
f: application-types.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment