|
| 1 | +# Created by https://www.gitignore.io/api/node,linux,macos,windows,sublimetext,visualstudiocode,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 | +# Gradle and Maven with auto-import |
| 28 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 29 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 30 | +# auto-import. |
| 31 | +# .idea/modules.xml |
| 32 | +# .idea/*.iml |
| 33 | +# .idea/modules |
| 34 | + |
| 35 | +# CMake |
| 36 | +cmake-build-*/ |
| 37 | + |
| 38 | +# Mongo Explorer plugin |
| 39 | +.idea/**/mongoSettings.xml |
| 40 | + |
| 41 | +# File-based project format |
| 42 | +*.iws |
| 43 | + |
| 44 | +# IntelliJ |
| 45 | +out/ |
| 46 | + |
| 47 | +# mpeltonen/sbt-idea plugin |
| 48 | +.idea_modules/ |
| 49 | + |
| 50 | +# JIRA plugin |
| 51 | +atlassian-ide-plugin.xml |
| 52 | + |
| 53 | +# Cursive Clojure plugin |
| 54 | +.idea/replstate.xml |
| 55 | + |
| 56 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 57 | +com_crashlytics_export_strings.xml |
| 58 | +crashlytics.properties |
| 59 | +crashlytics-build.properties |
| 60 | +fabric.properties |
| 61 | + |
| 62 | +# Editor-based Rest Client |
| 63 | +.idea/httpRequests |
| 64 | + |
| 65 | +### Intellij+all Patch ### |
| 66 | +# Ignores the whole .idea folder and all .iml files |
| 67 | +# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360 |
| 68 | + |
| 69 | +.idea/ |
| 70 | + |
| 71 | +# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 |
| 72 | + |
| 73 | +*.iml |
| 74 | +modules.xml |
| 75 | +.idea/misc.xml |
| 76 | +*.ipr |
| 77 | + |
| 78 | +### Linux ### |
| 79 | +*~ |
| 80 | + |
| 81 | +# temporary files which can be created if a process still has a handle open of a deleted file |
| 82 | +.fuse_hidden* |
| 83 | + |
| 84 | +# KDE directory preferences |
| 85 | +.directory |
| 86 | + |
| 87 | +# Linux trash folder which might appear on any partition or disk |
| 88 | +.Trash-* |
| 89 | + |
| 90 | +# .nfs files are created when an open file is removed but is still being accessed |
| 91 | +.nfs* |
| 92 | + |
| 93 | +### macOS ### |
| 94 | +# General |
| 95 | +.DS_Store |
| 96 | +.AppleDouble |
| 97 | +.LSOverride |
| 98 | + |
| 99 | +# Icon must end with two \r |
| 100 | +Icon |
| 101 | + |
| 102 | +# Thumbnails |
| 103 | +._* |
| 104 | + |
| 105 | +# Files that might appear in the root of a volume |
| 106 | +.DocumentRevisions-V100 |
| 107 | +.fseventsd |
| 108 | +.Spotlight-V100 |
| 109 | +.TemporaryItems |
| 110 | +.Trashes |
| 111 | +.VolumeIcon.icns |
| 112 | +.com.apple.timemachine.donotpresent |
| 113 | + |
| 114 | +# Directories potentially created on remote AFP share |
| 115 | +.AppleDB |
| 116 | +.AppleDesktop |
| 117 | +Network Trash Folder |
| 118 | +Temporary Items |
| 119 | +.apdisk |
| 120 | + |
| 121 | +### Node ### |
| 122 | +# Logs |
| 123 | +logs |
| 124 | +*.log |
| 125 | +npm-debug.log* |
| 126 | +yarn-debug.log* |
| 127 | +yarn-error.log* |
| 128 | + |
| 129 | +# Runtime data |
| 130 | +pids |
| 131 | +*.pid |
| 132 | +*.seed |
| 133 | +*.pid.lock |
| 134 | + |
| 135 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 136 | +lib-cov |
| 137 | + |
| 138 | +# Coverage directory used by tools like istanbul |
| 139 | +coverage |
| 140 | + |
| 141 | +# nyc test coverage |
| 142 | +.nyc_output |
| 143 | + |
| 144 | +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
| 145 | +.grunt |
| 146 | + |
| 147 | +# Bower dependency directory (https://bower.io/) |
| 148 | +bower_components |
| 149 | + |
| 150 | +# node-waf configuration |
| 151 | +.lock-wscript |
| 152 | + |
| 153 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 154 | +build/Release |
| 155 | + |
| 156 | +# Dependency directories |
| 157 | +node_modules/ |
| 158 | +jspm_packages/ |
| 159 | + |
| 160 | +# TypeScript v1 declaration files |
| 161 | +typings/ |
| 162 | + |
| 163 | +# Optional npm cache directory |
| 164 | +.npm |
| 165 | + |
| 166 | +# Optional eslint cache |
| 167 | +.eslintcache |
| 168 | + |
| 169 | +# Optional REPL history |
| 170 | +.node_repl_history |
| 171 | + |
| 172 | +# Output of 'npm pack' |
| 173 | +*.tgz |
| 174 | + |
| 175 | +# Yarn Integrity file |
| 176 | +.yarn-integrity |
| 177 | + |
| 178 | +# dotenv environment variables file |
| 179 | +.env |
| 180 | + |
| 181 | +# parcel-bundler cache (https://parceljs.org/) |
| 182 | +.cache |
| 183 | + |
| 184 | +# next.js build output |
| 185 | +.next |
| 186 | + |
| 187 | +# nuxt.js build output |
| 188 | +.nuxt |
| 189 | + |
| 190 | +# vuepress build output |
| 191 | +.vuepress/dist |
| 192 | + |
| 193 | +# Serverless directories |
| 194 | +.serverless |
| 195 | + |
| 196 | +### SublimeText ### |
| 197 | +# Cache files for Sublime Text |
| 198 | +*.tmlanguage.cache |
| 199 | +*.tmPreferences.cache |
| 200 | +*.stTheme.cache |
| 201 | + |
| 202 | +# Workspace files are user-specific |
| 203 | +*.sublime-workspace |
| 204 | + |
| 205 | +# Project files should be checked into the repository, unless a significant |
| 206 | +# proportion of contributors will probably not be using Sublime Text |
| 207 | +# *.sublime-project |
| 208 | + |
| 209 | +# SFTP configuration file |
| 210 | +sftp-config.json |
| 211 | + |
| 212 | +# Package control specific files |
| 213 | +Package Control.last-run |
| 214 | +Package Control.ca-list |
| 215 | +Package Control.ca-bundle |
| 216 | +Package Control.system-ca-bundle |
| 217 | +Package Control.cache/ |
| 218 | +Package Control.ca-certs/ |
| 219 | +Package Control.merged-ca-bundle |
| 220 | +Package Control.user-ca-bundle |
| 221 | +oscrypto-ca-bundle.crt |
| 222 | +bh_unicode_properties.cache |
| 223 | + |
| 224 | +# Sublime-github package stores a github token in this file |
| 225 | +# https://packagecontrol.io/packages/sublime-github |
| 226 | +GitHub.sublime-settings |
| 227 | + |
| 228 | +### VisualStudioCode ### |
| 229 | +.vscode/* |
| 230 | +!.vscode/settings.json |
| 231 | +!.vscode/tasks.json |
| 232 | +!.vscode/launch.json |
| 233 | +!.vscode/extensions.json |
| 234 | + |
| 235 | +### Windows ### |
| 236 | +# Windows thumbnail cache files |
| 237 | +Thumbs.db |
| 238 | +ehthumbs.db |
| 239 | +ehthumbs_vista.db |
| 240 | + |
| 241 | +# Dump file |
| 242 | +*.stackdump |
| 243 | + |
| 244 | +# Folder config file |
| 245 | +[Dd]esktop.ini |
| 246 | + |
| 247 | +# Recycle Bin used on file shares |
| 248 | +$RECYCLE.BIN/ |
| 249 | + |
| 250 | +# Windows Installer files |
| 251 | +*.cab |
| 252 | +*.msi |
| 253 | +*.msix |
| 254 | +*.msm |
| 255 | +*.msp |
| 256 | + |
| 257 | +# Windows shortcuts |
| 258 | +*.lnk |
| 259 | + |
| 260 | + |
| 261 | +# End of https://www.gitignore.io/api/node,linux,macos,windows,sublimetext,visualstudiocode,intellij+all |
| 262 | + |
| 263 | +# Nuxt generate |
| 264 | +dist |
0 commit comments