|
| 1 | + |
| 2 | +# Created by https://www.gitignore.io/api/git,osx,node,webstorm,intellij,visualstudiocode |
| 3 | +# Edit at https://www.gitignore.io/?templates=git,osx,node,webstorm,intellij,visualstudiocode |
| 4 | + |
| 5 | +### Git ### |
| 6 | +# Created by git for backups. To disable backups in Git: |
| 7 | +# $ git config --global mergetool.keepBackup false |
| 8 | +*.orig |
| 9 | + |
| 10 | +# Created by git when using merge tools for conflicts |
| 11 | +*.BACKUP.* |
| 12 | +*.BASE.* |
| 13 | +*.LOCAL.* |
| 14 | +*.REMOTE.* |
| 15 | +*_BACKUP_*.txt |
| 16 | +*_BASE_*.txt |
| 17 | +*_LOCAL_*.txt |
| 18 | +*_REMOTE_*.txt |
| 19 | + |
| 20 | +### Intellij ### |
| 21 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 22 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 23 | + |
| 24 | +# User-specific stuff |
| 25 | +.idea/**/workspace.xml |
| 26 | +.idea/**/tasks.xml |
| 27 | +.idea/**/usage.statistics.xml |
| 28 | +.idea/**/dictionaries |
| 29 | +.idea/**/shelf |
| 30 | + |
| 31 | +# Generated files |
| 32 | +.idea/**/contentModel.xml |
| 33 | + |
| 34 | +# Sensitive or high-churn files |
| 35 | +.idea/**/dataSources/ |
| 36 | +.idea/**/dataSources.ids |
| 37 | +.idea/**/dataSources.local.xml |
| 38 | +.idea/**/sqlDataSources.xml |
| 39 | +.idea/**/dynamic.xml |
| 40 | +.idea/**/uiDesigner.xml |
| 41 | +.idea/**/dbnavigator.xml |
| 42 | + |
| 43 | +# Gradle |
| 44 | +.idea/**/gradle.xml |
| 45 | +.idea/**/libraries |
| 46 | + |
| 47 | +# Gradle and Maven with auto-import |
| 48 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 49 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 50 | +# auto-import. |
| 51 | +# .idea/modules.xml |
| 52 | +# .idea/*.iml |
| 53 | +# .idea/modules |
| 54 | +# *.iml |
| 55 | +# *.ipr |
| 56 | + |
| 57 | +# CMake |
| 58 | +cmake-build-*/ |
| 59 | + |
| 60 | +# Mongo Explorer plugin |
| 61 | +.idea/**/mongoSettings.xml |
| 62 | + |
| 63 | +# File-based project format |
| 64 | +*.iws |
| 65 | + |
| 66 | +# IntelliJ |
| 67 | +out/ |
| 68 | + |
| 69 | +# mpeltonen/sbt-idea plugin |
| 70 | +.idea_modules/ |
| 71 | + |
| 72 | +# JIRA plugin |
| 73 | +atlassian-ide-plugin.xml |
| 74 | + |
| 75 | +# Cursive Clojure plugin |
| 76 | +.idea/replstate.xml |
| 77 | + |
| 78 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 79 | +com_crashlytics_export_strings.xml |
| 80 | +crashlytics.properties |
| 81 | +crashlytics-build.properties |
| 82 | +fabric.properties |
| 83 | + |
| 84 | +# Editor-based Rest Client |
| 85 | +.idea/httpRequests |
| 86 | + |
| 87 | +# Android studio 3.1+ serialized cache file |
| 88 | +.idea/caches/build_file_checksums.ser |
| 89 | + |
| 90 | +### Intellij Patch ### |
| 91 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
| 92 | + |
| 93 | +# *.iml |
| 94 | +# modules.xml |
| 95 | +# .idea/misc.xml |
| 96 | +# *.ipr |
| 97 | + |
| 98 | +# Sonarlint plugin |
| 99 | +.idea/sonarlint |
| 100 | + |
| 101 | +### Node ### |
| 102 | +# Logs |
| 103 | +logs |
| 104 | +*.log |
| 105 | +npm-debug.log* |
| 106 | +yarn-debug.log* |
| 107 | +yarn-error.log* |
| 108 | +lerna-debug.log* |
| 109 | + |
| 110 | +# Diagnostic reports (https://nodejs.org/api/report.html) |
| 111 | +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
| 112 | + |
| 113 | +# Runtime data |
| 114 | +pids |
| 115 | +*.pid |
| 116 | +*.seed |
| 117 | +*.pid.lock |
| 118 | + |
| 119 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 120 | +lib-cov |
| 121 | + |
| 122 | +# Coverage directory used by tools like istanbul |
| 123 | +coverage |
| 124 | +*.lcov |
| 125 | + |
| 126 | +# nyc test coverage |
| 127 | +.nyc_output |
| 128 | + |
| 129 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) |
| 130 | +.grunt |
| 131 | + |
| 132 | +# Bower dependency directory (https://bower.io/) |
| 133 | +bower_components |
| 134 | + |
| 135 | +# node-waf configuration |
| 136 | +.lock-wscript |
| 137 | + |
| 138 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 139 | +build/Release |
| 140 | + |
| 141 | +# Dependency directories |
| 142 | +node_modules/ |
| 143 | +jspm_packages/ |
| 144 | + |
| 145 | +# TypeScript v1 declaration files |
| 146 | +typings/ |
| 147 | + |
| 148 | +# TypeScript cache |
| 149 | +*.tsbuildinfo |
| 150 | + |
| 151 | +# Optional npm cache directory |
| 152 | +.npm |
| 153 | + |
| 154 | +# Optional eslint cache |
| 155 | +.eslintcache |
| 156 | + |
| 157 | +# Optional REPL history |
| 158 | +.node_repl_history |
| 159 | + |
| 160 | +# Output of 'npm pack' |
| 161 | +*.tgz |
| 162 | + |
| 163 | +# Yarn Integrity file |
| 164 | +.yarn-integrity |
| 165 | + |
| 166 | +# dotenv environment variables file |
| 167 | +.env |
| 168 | +.env.test |
| 169 | + |
| 170 | +# parcel-bundler cache (https://parceljs.org/) |
| 171 | +.cache |
| 172 | + |
| 173 | +# next.js build output |
| 174 | +.next |
| 175 | + |
| 176 | +# nuxt.js build output |
| 177 | +.nuxt |
| 178 | + |
| 179 | +# vuepress build output |
| 180 | +.vuepress/dist |
| 181 | + |
| 182 | +# Serverless directories |
| 183 | +.serverless/ |
| 184 | + |
| 185 | +# FuseBox cache |
| 186 | +.fusebox/ |
| 187 | + |
| 188 | +# DynamoDB Local files |
| 189 | +.dynamodb/ |
| 190 | + |
| 191 | +### OSX ### |
| 192 | +# General |
| 193 | +.DS_Store |
| 194 | +.AppleDouble |
| 195 | +.LSOverride |
| 196 | + |
| 197 | +# Icon must end with two \r |
| 198 | +Icon |
| 199 | + |
| 200 | +# Thumbnails |
| 201 | +._* |
| 202 | + |
| 203 | +# Files that might appear in the root of a volume |
| 204 | +.DocumentRevisions-V100 |
| 205 | +.fseventsd |
| 206 | +.Spotlight-V100 |
| 207 | +.TemporaryItems |
| 208 | +.Trashes |
| 209 | +.VolumeIcon.icns |
| 210 | +.com.apple.timemachine.donotpresent |
| 211 | + |
| 212 | +# Directories potentially created on remote AFP share |
| 213 | +.AppleDB |
| 214 | +.AppleDesktop |
| 215 | +Network Trash Folder |
| 216 | +Temporary Items |
| 217 | +.apdisk |
| 218 | + |
| 219 | +### VisualStudioCode ### |
| 220 | +.vscode/* |
| 221 | +!.vscode/settings.json |
| 222 | +!.vscode/tasks.json |
| 223 | +!.vscode/launch.json |
| 224 | +!.vscode/extensions.json |
| 225 | + |
| 226 | +### VisualStudioCode Patch ### |
| 227 | +# Ignore all local history of files |
| 228 | +.history |
| 229 | + |
| 230 | +### WebStorm ### |
| 231 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 232 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 233 | + |
| 234 | +# User-specific stuff |
| 235 | + |
| 236 | +# Generated files |
| 237 | + |
| 238 | +# Sensitive or high-churn files |
| 239 | + |
| 240 | +# Gradle |
| 241 | + |
| 242 | +# Gradle and Maven with auto-import |
| 243 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 244 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 245 | +# auto-import. |
| 246 | +# .idea/modules.xml |
| 247 | +# .idea/*.iml |
| 248 | +# .idea/modules |
| 249 | +# *.iml |
| 250 | +# *.ipr |
| 251 | + |
| 252 | +# CMake |
| 253 | + |
| 254 | +# Mongo Explorer plugin |
| 255 | + |
| 256 | +# File-based project format |
| 257 | + |
| 258 | +# IntelliJ |
| 259 | + |
| 260 | +# mpeltonen/sbt-idea plugin |
| 261 | + |
| 262 | +# JIRA plugin |
| 263 | + |
| 264 | +# Cursive Clojure plugin |
| 265 | + |
| 266 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 267 | + |
| 268 | +# Editor-based Rest Client |
| 269 | + |
| 270 | +# Android studio 3.1+ serialized cache file |
| 271 | + |
| 272 | +### WebStorm Patch ### |
| 273 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
| 274 | + |
| 275 | +# *.iml |
| 276 | +# modules.xml |
| 277 | +# .idea/misc.xml |
| 278 | +# *.ipr |
| 279 | + |
| 280 | +# Sonarlint plugin |
| 281 | + |
| 282 | +# End of https://www.gitignore.io/api/git,osx,node,webstorm,intellij,visualstudiocode |
| 283 | + |
| 284 | +.idea |
| 285 | +workspaces |
0 commit comments