.gitignore (1362B)
1 # Created by .ignore support plugin (hsz.mobi) 2 ### JetBrains template 3 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm 4 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 5 6 # User-specific stuff: 7 .idea/**/tasks.xml 8 .idea/dictionaries 9 10 # Sensitive or high-churn files: 11 .idea/**/dataSources/ 12 .idea/**/dataSources.ids 13 .idea/**/dataSources.xml 14 .idea/**/dataSources.local.xml 15 .idea/**/sqlDataSources.xml 16 .idea/**/dynamic.xml 17 .idea/**/uiDesigner.xml 18 19 # Gradle: 20 .idea/**/gradle.xml 21 22 # CMake 23 cmake-build-debug/ 24 cmake-build-release/ 25 26 # Mongo Explorer plugin: 27 .idea/**/mongoSettings.xml 28 29 ## File-based project format: 30 *.iws 31 32 ## Plugin-specific files: 33 34 # IntelliJ 35 out/ 36 37 # mpeltonen/sbt-idea plugin 38 .idea_modules/ 39 40 # JIRA plugin 41 atlassian-ide-plugin.xml 42 43 # Cursive Clojure plugin 44 .idea/replstate.xml 45 46 # Crashlytics plugin (for Android Studio and IntelliJ) 47 com_crashlytics_export_strings.xml 48 crashlytics.properties 49 crashlytics-build.properties 50 fabric.properties 51 ### SBT template 52 # Simple Build Tool 53 # http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control 54 55 dist/* 56 target/ 57 lib_managed/ 58 src_managed/ 59 project/boot/ 60 project/plugins/project/ 61 .history 62 .cache 63 .lib/ 64 ### Scala template 65 *.class 66 *.log 67 src/main/resources/application.conf 68 .idea/ 69 data/ 70 log/