blob: 55841f0c702cba8a174e7f5fb640daab58e44f9a [file] [log] [blame]
piclosec4e65032017-02-21 14:52:45 +01001
2# Created by https://www.gitignore.io/api/java,emacs,vim,eclipse,intellij,docker
3
4### Emacs ###
5# -*- mode: gitignore; -*-
6*~
7\#*\#
8/.emacs.desktop
9/.emacs.desktop.lock
10*.elc
11auto-save-list
12tramp
13.\#*
14
15# Org-mode
16.org-id-locations
17*_archive
18
19# flymake-mode
20*_flymake.*
21
22# eshell files
23/eshell/history
24/eshell/lastdir
25
26# elpa packages
27/elpa/
28
29# reftex files
30*.rel
31
32# AUCTeX auto folder
33/auto/
34
35# cask packages
36.cask/
37dist/
38
39# Flycheck
40flycheck_*.el
41
42# server auth directory
43/server/
44
45# projectiles files
46.projectile
47
48# directory configuration
49.dir-locals.el
50
51
52### Vim ###
53# swap
54[._]*.s[a-w][a-z]
55[._]s[a-w][a-z]
56# session
57Session.vim
58# temporary
59.netrwhist
60# auto-generated tag files
61tags
62
63
64### Eclipse ###
65
66.metadata
67bin/
68tmp/
69*.tmp
70*.bak
71*.swp
72*~.nib
73local.properties
74.settings/
75.loadpath
76.recommenders
77
78# Eclipse Core
79.project
80
81# External tool builders
82.externalToolBuilders/
83
84# Locally stored "Eclipse launch configurations"
85*.launch
86
87# PyDev specific (Python IDE for Eclipse)
88*.pydevproject
89
90# CDT-specific (C/C++ Development Tooling)
91.cproject
92
93# JDT-specific (Eclipse Java Development Tools)
94.classpath
95
96# Java annotation processor (APT)
97.factorypath
98
99# PDT-specific (PHP Development Tools)
100.buildpath
101
102# sbteclipse plugin
103.target
104
105# Tern plugin
106.tern-project
107
108# TeXlipse plugin
109.texlipse
110
111# STS (Spring Tool Suite)
112.springBeans
113
114# Code Recommenders
115.recommenders/
116
117
118### Intellij ###
119# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
120# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
121
122# User-specific stuff:
123.idea/workspace.xml
124.idea/tasks.xml
125
126# Sensitive or high-churn files:
127.idea/dataSources/
128.idea/dataSources.ids
129.idea/dataSources.xml
130.idea/dataSources.local.xml
131.idea/sqlDataSources.xml
132.idea/dynamic.xml
133.idea/uiDesigner.xml
134
135# Gradle:
136.idea/gradle.xml
137.idea/libraries
138
139# Mongo Explorer plugin:
140.idea/mongoSettings.xml
141
142## File-based project format:
143*.iws
144
145## Plugin-specific files:
146
147# IntelliJ
148/out/
149
150# mpeltonen/sbt-idea plugin
151.idea_modules/
152
153# JIRA plugin
154atlassian-ide-plugin.xml
155
156# Crashlytics plugin (for Android Studio and IntelliJ)
157com_crashlytics_export_strings.xml
158crashlytics.properties
159crashlytics-build.properties
160fabric.properties
161
162### Intellij Patch ###
163# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
164
165# *.iml
166# modules.xml
167# .idea/misc.xml
168# *.ipr
169
170
171#!! ERROR: docker is undefined. Use list command to see defined gitignore types !!#
172
173### Java ###
174*.class
175
176# BlueJ files
177*.ctxt
178
179# Mobile Tools for Java (J2ME)
180.mtj.tmp/
181
182# Package Files #
183*.jar
184*.war
185*.ear
186
187# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
188hs_err_pid*
189