|
| 1 | +#Python |
| 2 | +*.py[cod] |
| 3 | +*$py.class |
| 4 | + |
| 5 | +#Java |
| 6 | +*.class |
| 7 | +*.log |
| 8 | +*.jar |
| 9 | + |
| 10 | +#c/c++ |
| 11 | +*.o |
| 12 | +*.obj |
| 13 | + |
| 14 | +#Executables |
| 15 | +*.exe |
| 16 | +*.out |
| 17 | +*.app |
| 18 | + |
| 19 | + |
| 20 | +# OS X Files |
| 21 | +.DS_Store |
| 22 | +Thumbs.db |
| 23 | +*.swp |
| 24 | +*.swo |
| 25 | +*.lnk |
| 26 | +*~ |
| 27 | + |
| 28 | +# IDE FILES |
| 29 | +*.sublime-* |
| 30 | +*.tmproj |
| 31 | + |
| 32 | + |
| 33 | +### Eclipse ### |
| 34 | + |
| 35 | +.metadata |
| 36 | +bin/ |
| 37 | +tmp/ |
| 38 | +*.tmp |
| 39 | +*.bak |
| 40 | +*.swp |
| 41 | +*~.nib |
| 42 | +local.properties |
| 43 | +.settings/ |
| 44 | +.loadpath |
| 45 | +.recommenders |
| 46 | + |
| 47 | +# External tool builders |
| 48 | +.externalToolBuilders/ |
| 49 | + |
| 50 | +# Locally stored "Eclipse launch configurations" |
| 51 | +*.launch |
| 52 | + |
| 53 | +# PyDev specific (Python IDE for Eclipse) |
| 54 | +*.pydevproject |
| 55 | + |
| 56 | +# CDT-specific (C/C++ Development Tooling) |
| 57 | +.cproject |
| 58 | + |
| 59 | +# CDT- autotools |
| 60 | +.autotools |
| 61 | + |
| 62 | +# Java annotation processor (APT) |
| 63 | +.factorypath |
| 64 | + |
| 65 | +# PDT-specific (PHP Development Tools) |
| 66 | +.buildpath |
| 67 | + |
| 68 | +# sbteclipse plugin |
| 69 | +.target |
| 70 | + |
| 71 | +# Tern plugin |
| 72 | +.tern-project |
| 73 | + |
| 74 | +# TeXlipse plugin |
| 75 | +.texlipse |
| 76 | + |
| 77 | +# STS (Spring Tool Suite) |
| 78 | +.springBeans |
| 79 | + |
| 80 | +# Code Recommenders |
| 81 | +.recommenders/ |
| 82 | + |
| 83 | +# Annotation Processing |
| 84 | +.apt_generated/ |
| 85 | + |
| 86 | +# Scala IDE specific (Scala & Java development for Eclipse) |
| 87 | +.cache-main |
| 88 | +.scala_dependencies |
| 89 | +.worksheet |
| 90 | + |
| 91 | +### Eclipse Patch ### |
| 92 | +# Eclipse Core |
| 93 | +.project |
| 94 | + |
| 95 | +# JDT-specific (Eclipse Java Development Tools) |
| 96 | +.classpath |
| 97 | + |
| 98 | +# Annotation Processing |
| 99 | +.apt_generated |
| 100 | + |
| 101 | +.sts4-cache/ |
| 102 | + |
| 103 | +### Emacs ### |
| 104 | +# -*- mode: gitignore; -*- |
| 105 | +*~ |
| 106 | +\#*\# |
| 107 | +/.emacs.desktop |
| 108 | +/.emacs.desktop.lock |
| 109 | +*.elc |
| 110 | +auto-save-list |
| 111 | +tramp |
| 112 | +.\#* |
| 113 | + |
| 114 | +# Org-mode |
| 115 | +.org-id-locations |
| 116 | +*_archive |
| 117 | + |
| 118 | +# flymake-mode |
| 119 | +*_flymake.* |
| 120 | + |
| 121 | +# eshell files |
| 122 | +/eshell/history |
| 123 | +/eshell/lastdir |
| 124 | + |
| 125 | +# elpa packages |
| 126 | +/elpa/ |
| 127 | + |
| 128 | +# reftex files |
| 129 | +*.rel |
| 130 | + |
| 131 | +# AUCTeX auto folder |
| 132 | +/auto/ |
| 133 | + |
| 134 | +# cask packages |
| 135 | +.cask/ |
| 136 | +dist/ |
| 137 | + |
| 138 | +# Flycheck |
| 139 | +flycheck_*.el |
| 140 | + |
| 141 | +# server auth directory |
| 142 | +/server/ |
| 143 | + |
| 144 | +# projectiles files |
| 145 | +.projectile |
| 146 | + |
| 147 | +# directory configuration |
| 148 | +.dir-locals.el |
| 149 | + |
| 150 | +### Intellij ### |
| 151 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 152 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 153 | + |
| 154 | +# User-specific stuff |
| 155 | +.idea/**/workspace.xml |
| 156 | +.idea/**/tasks.xml |
| 157 | +.idea/**/usage.statistics.xml |
| 158 | +.idea/**/dictionaries |
| 159 | +.idea/**/shelf |
| 160 | + |
| 161 | +# Generated files |
| 162 | +.idea/**/contentModel.xml |
| 163 | + |
| 164 | +# Sensitive or high-churn files |
| 165 | +.idea/**/dataSources/ |
| 166 | +.idea/**/dataSources.ids |
| 167 | +.idea/**/dataSources.local.xml |
| 168 | +.idea/**/sqlDataSources.xml |
| 169 | +.idea/**/dynamic.xml |
| 170 | +.idea/**/uiDesigner.xml |
| 171 | +.idea/**/dbnavigator.xml |
| 172 | + |
| 173 | +# Gradle |
| 174 | +.idea/**/gradle.xml |
| 175 | +.idea/**/libraries |
| 176 | + |
| 177 | +# Gradle and Maven with auto-import |
| 178 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 179 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 180 | +# auto-import. |
| 181 | +# .idea/modules.xml |
| 182 | +# .idea/*.iml |
| 183 | +# .idea/modules |
| 184 | + |
| 185 | +# CMake |
| 186 | +cmake-build-*/ |
| 187 | + |
| 188 | +# Mongo Explorer plugin |
| 189 | +.idea/**/mongoSettings.xml |
| 190 | + |
| 191 | +# File-based project format |
| 192 | +*.iws |
| 193 | + |
| 194 | +# IntelliJ |
| 195 | +out/ |
| 196 | + |
| 197 | +# mpeltonen/sbt-idea plugin |
| 198 | +.idea_modules/ |
| 199 | + |
| 200 | +# JIRA plugin |
| 201 | +atlassian-ide-plugin.xml |
| 202 | + |
| 203 | +# Cursive Clojure plugin |
| 204 | +.idea/replstate.xml |
| 205 | + |
| 206 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 207 | +com_crashlytics_export_strings.xml |
| 208 | +crashlytics.properties |
| 209 | +crashlytics-build.properties |
| 210 | +fabric.properties |
| 211 | + |
| 212 | +# Editor-based Rest Client |
| 213 | +.idea/httpRequests |
| 214 | + |
| 215 | +# Android studio 3.1+ serialized cache file |
| 216 | +.idea/caches/build_file_checksums.ser |
| 217 | + |
| 218 | +### Intellij Patch ### |
| 219 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
| 220 | + |
| 221 | +# *.iml |
| 222 | +# modules.xml |
| 223 | +# .idea/misc.xml |
| 224 | +# *.ipr |
| 225 | + |
| 226 | +# Sonarlint plugin |
| 227 | +.idea/sonarlint |
| 228 | + |
| 229 | +### Vim ### |
| 230 | +# Swap |
| 231 | +[._]*.s[a-v][a-z] |
| 232 | +[._]*.sw[a-p] |
| 233 | +[._]s[a-rt-v][a-z] |
| 234 | +[._]ss[a-gi-z] |
| 235 | +[._]sw[a-p] |
| 236 | + |
| 237 | +# Session |
| 238 | +Session.vim |
| 239 | + |
| 240 | +# Temporary |
| 241 | +.netrwhist |
| 242 | +# Auto-generated tag files |
| 243 | +tags |
| 244 | +# Persistent undo |
| 245 | +[._]*.un~ |
| 246 | + |
| 247 | +### VisualStudioCode ### |
| 248 | +.vscode/* |
| 249 | +!.vscode/settings.json |
| 250 | +!.vscode/tasks.json |
| 251 | +!.vscode/launch.json |
| 252 | +!.vscode/extensions.json |
| 253 | + |
0 commit comments