updated gitignore

This commit is contained in:
2018-02-26 13:53:09 +01:00
parent 9b8b05f788
commit 9804345a83

36
.gitignore vendored
View File

@@ -1,3 +1,8 @@
# Created by https://www.gitignore.io/api/eclipse,intellij+all
### Eclipse ###
.metadata .metadata
bin/ bin/
tmp/ tmp/
@@ -22,9 +27,6 @@ local.properties
# CDT-specific (C/C++ Development Tooling) # CDT-specific (C/C++ Development Tooling)
.cproject .cproject
# CDT- autotools
.autotools
# Java annotation processor (APT) # Java annotation processor (APT)
.factorypath .factorypath
@@ -51,13 +53,15 @@ local.properties
.scala_dependencies .scala_dependencies
.worksheet .worksheet
### Eclipse Patch ###
# Eclipse Core
.project
# JDT-specific (Eclipse Java Development Tools)
.classpath
### Intellij+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff: # User-specific stuff:
@@ -68,6 +72,7 @@ local.properties
# Sensitive or high-churn files: # Sensitive or high-churn files:
.idea/**/dataSources/ .idea/**/dataSources/
.idea/**/dataSources.ids .idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml .idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml .idea/**/sqlDataSources.xml
.idea/**/dynamic.xml .idea/**/dynamic.xml
@@ -79,7 +84,6 @@ local.properties
# CMake # CMake
cmake-build-debug/ cmake-build-debug/
cmake-build-release/
# Mongo Explorer plugin: # Mongo Explorer plugin:
.idea/**/mongoSettings.xml .idea/**/mongoSettings.xml
@@ -90,7 +94,7 @@ cmake-build-release/
## Plugin-specific files: ## Plugin-specific files:
# IntelliJ # IntelliJ
out/ /out/
# mpeltonen/sbt-idea plugin # mpeltonen/sbt-idea plugin
.idea_modules/ .idea_modules/
@@ -101,9 +105,21 @@ atlassian-ide-plugin.xml
# Cursive Clojure plugin # Cursive Clojure plugin
.idea/replstate.xml .idea/replstate.xml
# Ruby plugin and RubyMine
/.rakeTasks
# Crashlytics plugin (for Android Studio and IntelliJ) # Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml com_crashlytics_export_strings.xml
crashlytics.properties crashlytics.properties
crashlytics-build.properties crashlytics-build.properties
fabric.properties fabric.properties
### Intellij+all Patch ###
# Ignores the whole idea folder
# See https://github.com/joeblau/gitignore.io/issues/186 and
https://github.com/joeblau/gitignore.io/issues/360
.idea/
.iml .iml
# End of https://www.gitignore.io/api/eclipse,intellij+all