Skip to content

Instantly share code, notes, and snippets.

@jbenhamou
Last active July 12, 2021 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jbenhamou/013626ee67b5846a7b9f22b97292ccbe to your computer and use it in GitHub Desktop.
Save jbenhamou/013626ee67b5846a7b9f22b97292ccbe to your computer and use it in GitHub Desktop.
Mulesoft .gitignore
# ------------------------------------------------------------------------------ #
# Java defaults (https://github.com/github/gitignore/blob/master/Java.gitignore) #
# ------------------------------------------------------------------------------ #
# Reference: https://github.com/github/gitignore/blob/master/Java.gitignore
*.class
# Package Files #
*.jar
*.war
*.ear
# ------------------------------------------------------------------------------------------- #
# Eclipse-specific (https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore) #
# ------------------------------------------------------------------------------------------- #
*.pydevproject
.metadata
# Version control some bin directories for my own scripts
#bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
# Recommended for Maven based projects
.project
.classpath
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
# ---------------------------------------------------------------------------- #
# Mulesoft Studio #
# ---------------------------------------------------------------------------- #
.studio/
flows/
target/
src/main/api/.repository/
.mule
catalog/
bin/
/reports
# ---------------------------------------------------------------------------- #
# Maven Wrapper #
# ---------------------------------------------------------------------------- #
!maven-wrapper.jar
# ---------------------------------------------------------------------------- #
# InteliJ #
# ---------------------------------------------------------------------------- #
# Created by https://www.gitignore.io/api/intellij+iml
### Intellij+iml ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff:
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries
# Sensitive or high-churn files:
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
# Gradle:
.idea/**/gradle.xml
.idea/**/libraries
# CMake
cmake-build-debug/
# Mongo Explorer plugin:
.idea/**/mongoSettings.xml
## File-based project format:
*.iws
## Plugin-specific files:
# IntelliJ
/out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml
# Ruby plugin and RubyMine
/.rakeTasks
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
### Intellij+iml Patch ###
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
*.iml
modules.xml
.idea/misc.xml
*.ipr
# End of https://www.gitignore.io/api/intellij+iml
# ---------------------------------------------------------------------------- #
# Mac OS #
# ---------------------------------------------------------------------------- #
*.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# ---------------------------------------------------------------------------- #
# Log Files #
# ---------------------------------------------------------------------------- #
*.log
*.sqlite
@wds444
Copy link

wds444 commented Jul 12, 2021

Hey @jbenhamou,

I was wondering if you have a purely mule version of this file you're using?
It would be a great gist for developers as I'm pretty sure no-one has something like that.
(Most examples are for mule 3 + studio 6 or include many other files like IntelliJ here )

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