|
| 1 | +# Created by https://www.gitignore.io/api/node,intellij+all |
| 2 | + |
| 3 | +### Intellij+all ### |
| 4 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 5 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 6 | + |
| 7 | +# User-specific stuff |
| 8 | +.idea/**/workspace.xml |
| 9 | +.idea/**/tasks.xml |
| 10 | +.idea/**/usage.statistics.xml |
| 11 | +.idea/**/dictionaries |
| 12 | +.idea/**/shelf |
| 13 | + |
| 14 | +# Sensitive or high-churn files |
| 15 | +.idea/**/dataSources/ |
| 16 | +.idea/**/dataSources.ids |
| 17 | +.idea/**/dataSources.local.xml |
| 18 | +.idea/**/sqlDataSources.xml |
| 19 | +.idea/**/dynamic.xml |
| 20 | +.idea/**/uiDesigner.xml |
| 21 | +.idea/**/dbnavigator.xml |
| 22 | + |
| 23 | +# Gradle |
| 24 | +.idea/**/gradle.xml |
| 25 | +.idea/**/libraries |
| 26 | + |
| 27 | +# CMake |
| 28 | +cmake-build-*/ |
| 29 | + |
| 30 | +# Mongo Explorer plugin |
| 31 | +.idea/**/mongoSettings.xml |
| 32 | + |
| 33 | +# File-based project format |
| 34 | +*.iws |
| 35 | + |
| 36 | +# IntelliJ |
| 37 | +out/ |
| 38 | + |
| 39 | +# mpeltonen/sbt-idea plugin |
| 40 | +.idea_modules/ |
| 41 | + |
| 42 | +# JIRA plugin |
| 43 | +atlassian-ide-plugin.xml |
| 44 | + |
| 45 | +# Cursive Clojure plugin |
| 46 | +.idea/replstate.xml |
| 47 | + |
| 48 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 49 | +com_crashlytics_export_strings.xml |
| 50 | +crashlytics.properties |
| 51 | +crashlytics-build.properties |
| 52 | +fabric.properties |
| 53 | + |
| 54 | +# Editor-based Rest Client |
| 55 | +.idea/httpRequests |
| 56 | + |
| 57 | +### Intellij+all Patch ### |
| 58 | +# Ignores the whole .idea folder and all .iml files |
| 59 | +# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360 |
| 60 | + |
| 61 | +.idea/ |
| 62 | + |
| 63 | +# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 |
| 64 | + |
| 65 | +*.iml |
| 66 | +modules.xml |
| 67 | +.idea/misc.xml |
| 68 | +*.ipr |
| 69 | + |
| 70 | +### Node ### |
| 71 | +# Logs |
| 72 | +logs |
| 73 | +*.log |
| 74 | +npm-debug.log* |
| 75 | +yarn-debug.log* |
| 76 | +yarn-error.log* |
| 77 | + |
| 78 | +# Runtime data |
| 79 | +pids |
| 80 | +*.pid |
| 81 | +*.seed |
| 82 | +*.pid.lock |
| 83 | + |
| 84 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 85 | +lib-cov |
| 86 | + |
| 87 | +# Coverage directory used by tools like istanbul |
| 88 | +coverage |
| 89 | + |
| 90 | +# nyc test coverage |
| 91 | +.nyc_output |
| 92 | + |
| 93 | +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
| 94 | +.grunt |
| 95 | + |
| 96 | +# Bower dependency directory (https://bower.io/) |
| 97 | +bower_components |
| 98 | + |
| 99 | +# node-waf configuration |
| 100 | +.lock-wscript |
| 101 | + |
| 102 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 103 | +build/Release |
| 104 | + |
| 105 | +# Dependency directories |
| 106 | +node_modules/ |
| 107 | +jspm_packages/ |
| 108 | + |
| 109 | +# TypeScript v1 declaration files |
| 110 | +typings/ |
| 111 | + |
| 112 | +# Optional npm cache directory |
| 113 | +.npm |
| 114 | + |
| 115 | +# Optional eslint cache |
| 116 | +.eslintcache |
| 117 | + |
| 118 | +# Optional REPL history |
| 119 | +.node_repl_history |
| 120 | + |
| 121 | +# Output of 'npm pack' |
| 122 | +*.tgz |
| 123 | + |
| 124 | +# Yarn Integrity file |
| 125 | +.yarn-integrity |
| 126 | + |
| 127 | +# dotenv environment variables file |
| 128 | +.env |
| 129 | + |
| 130 | +# parcel-bundler cache (https://parceljs.org/) |
| 131 | +.cache |
| 132 | + |
| 133 | +# next.js build output |
| 134 | +.next |
| 135 | + |
| 136 | +# nuxt.js build output |
| 137 | +.nuxt |
| 138 | + |
| 139 | +# vuepress build output |
| 140 | +.vuepress/dist |
| 141 | + |
| 142 | +# Serverless directories |
| 143 | +.serverless |
| 144 | + |
| 145 | + |
| 146 | +# End of https://www.gitignore.io/api/node,intellij+all |
| 147 | + |
| 148 | +config.js |
0 commit comments