|
| 1 | +# See https://help.github.com/articles/ignoring-files for more about ignoring files. |
| 2 | +# |
| 3 | +# If you find yourself ignoring temporary files generated by your text editor |
| 4 | +# or operating system, you probably want to add a global ignore instead: |
| 5 | +# git config --global core.excludesfile '~/.gitignore_global' |
| 6 | + |
| 7 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 8 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 9 | + |
| 10 | +# User-specific stuff |
| 11 | +.idea/**/workspace.xml |
| 12 | +.idea/**/tasks.xml |
| 13 | +.idea/**/usage.statistics.xml |
| 14 | +.idea/**/dictionaries |
| 15 | +.idea/**/shelf |
| 16 | + |
| 17 | +# Generated files |
| 18 | +.idea/**/contentModel.xml |
| 19 | + |
| 20 | +# Sensitive or high-churn files |
| 21 | +.idea/**/dataSources/ |
| 22 | +.idea/**/dataSources.ids |
| 23 | +.idea/**/dataSources.local.xml |
| 24 | +.idea/**/sqlDataSources.xml |
| 25 | +.idea/**/dynamic.xml |
| 26 | +.idea/**/uiDesigner.xml |
| 27 | +.idea/**/dbnavigator.xml |
| 28 | + |
| 29 | +# Gradle |
| 30 | +.idea/**/gradle.xml |
| 31 | +.idea/**/libraries |
| 32 | + |
| 33 | +# Gradle and Maven with auto-import |
| 34 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 35 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 36 | +# auto-import. |
| 37 | +# .idea/modules.xml |
| 38 | +# .idea/*.iml |
| 39 | +# .idea/modules |
| 40 | + |
| 41 | +# CMake |
| 42 | +cmake-build-*/ |
| 43 | + |
| 44 | +# Mongo Explorer plugin |
| 45 | +.idea/**/mongoSettings.xml |
| 46 | + |
| 47 | +# File-based project format |
| 48 | +*.iws |
| 49 | + |
| 50 | +# IntelliJ |
| 51 | +out/ |
| 52 | + |
| 53 | +# mpeltonen/sbt-idea plugin |
| 54 | +.idea_modules/ |
| 55 | + |
| 56 | +# JIRA plugin |
| 57 | +atlassian-ide-plugin.xml |
| 58 | + |
| 59 | +# Cursive Clojure plugin |
| 60 | +.idea/replstate.xml |
| 61 | + |
| 62 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 63 | +com_crashlytics_export_strings.xml |
| 64 | +crashlytics.properties |
| 65 | +crashlytics-build.properties |
| 66 | +fabric.properties |
| 67 | + |
| 68 | +# Editor-based Rest Client |
| 69 | +.idea/httpRequests |
| 70 | + |
| 71 | +# Android studio 3.1+ serialized cache file |
| 72 | +.idea/caches/build_file_checksums.ser |
| 73 | + |
| 74 | +# Migration generated during tests |
| 75 | +/test/generators/monarch_migrate/tmp |
| 76 | + |
| 77 | +# Ignore gem compile directory |
| 78 | +/pkg |
| 79 | + |
| 80 | +# Ignore bundler config. |
| 81 | +/.bundle |
| 82 | + |
| 83 | +# Ignore the default SQLite database. |
| 84 | +/db/*.sqlite3 |
| 85 | +/db/*.sqlite3-journal |
| 86 | + |
| 87 | +# Ignore all logfiles and tempfiles. |
| 88 | +/log/* |
| 89 | +/tmp/* |
| 90 | +!/log/.keep |
| 91 | +!/tmp/.keep |
| 92 | + |
| 93 | +# Ignore uploaded files in development |
| 94 | +/storage/* |
| 95 | +!/storage/.keep |
| 96 | + |
| 97 | +/node_modules |
| 98 | +/yarn-error.log |
| 99 | + |
| 100 | +/public/assets |
| 101 | +.byebug_history |
| 102 | + |
| 103 | +# Ignore master key for decrypting credentials and more. |
| 104 | +/config/master.key |
| 105 | + |
| 106 | +.foreman |
| 107 | + |
| 108 | +/public/packs |
| 109 | +/public/packs-test |
| 110 | +/node_modules |
| 111 | +/yarn-error.log |
| 112 | +yarn-debug.log* |
| 113 | +.yarn-integrity |
0 commit comments