summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Thog2016-08-24 09:47:19 +0200
committerGravatar Thog2016-08-24 09:47:19 +0200
commit366921f567c61704ed24d31fff1a1b4a70c2d635 (patch)
tree6026272c523f698c4239cb622a96852b123e5324
parentRemove Eclipse metadata file (diff)
downloadenigma-366921f567c61704ed24d31fff1a1b4a70c2d635.tar.gz
enigma-366921f567c61704ed24d31fff1a1b4a70c2d635.tar.xz
enigma-366921f567c61704ed24d31fff1a1b4a70c2d635.zip
Update .gitignore
-rw-r--r--.gitignore237
1 files changed, 229 insertions, 8 deletions
diff --git a/.gitignore b/.gitignore
index 0e1532b0..1729e4d6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,230 @@
1/Enigma.iml 1### Windows ###
2/bin 2# Windows image file caches
3/build 3Thumbs.db
4/.gradle 4ehthumbs.db
5/.idea 5
6.classpath 6# Folder config file
7.project 7Desktop.ini
8
9# Recycle Bin used on file shares
10$RECYCLE.BIN/
11
12# Windows Installer files
13*.cab
14*.msi
15*.msm
16*.msp
17
18# Windows shortcuts
19*.lnk
20
21
22### OSX ###
23*.DS_Store
24.AppleDouble
25.LSOverride
26
27# Icon must end with two \r
28Icon
29
30
31# Thumbnails
32._*
33
34# Files that might appear in the root of a volume
35.DocumentRevisions-V100
36.fseventsd
37.Spotlight-V100
38.TemporaryItems
39.Trashes
40.VolumeIcon.icns
41.com.apple.timemachine.donotpresent
42
43# Directories potentially created on remote AFP share
44.AppleDB
45.AppleDesktop
46Network Trash Folder
47Temporary Items
48.apdisk
49
50
51### Linux ###
52*~
53
54# temporary files which can be created if a process still has a handle open of a deleted file
55.fuse_hidden*
56
57# KDE directory preferences
58.directory
59
60# Linux trash folder which might appear on any partition or disk
61.Trash-*
62
63
64### Vim ###
65# swap
66[._]*.s[a-w][a-z]
67[._]s[a-w][a-z]
68# session
69Session.vim
70# temporary
71.netrwhist
72*~
73# auto-generated tag files
74tags
75
76
77### Emacs ###
78# -*- mode: gitignore; -*-
79*~
80\#*\#
81/.emacs.desktop
82/.emacs.desktop.lock
83*.elc
84auto-save-list
85tramp
86.\#*
87
88# Org-mode
89.org-id-locations
90*_archive
91
92# flymake-mode
93*_flymake.*
94
95# eshell files
96/eshell/history
97/eshell/lastdir
98
99# elpa packages
100/elpa/
101
102# reftex files
103*.rel
104
105# AUCTeX auto folder
106/auto/
107
108# cask packages
109.cask/
110dist/
111
112# Flycheck
113flycheck_*.el
114
115# server auth directory
116/server/
117
118# projectiles files
119.projectile
120
121### Intellij ###
122# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
123# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
124
125# User-specific stuff:
126.idea/workspace.xml
127.idea/tasks.xml
128.idea/dictionaries
129.idea/vcs.xml
130.idea/jsLibraryMappings.xml
131
132# Sensitive or high-churn files:
133.idea/dataSources.ids
134.idea/dataSources.xml
135.idea/dataSources.local.xml
136.idea/sqlDataSources.xml
137.idea/dynamic.xml
138.idea/uiDesigner.xml
139
140# Gradle:
141.idea/gradle.xml
142.idea/libraries
143
144## File-based project format:
145*.iws
146*.iml
8*.ipr 147*.ipr
9*.iws \ No newline at end of file 148
149## Plugin-specific files:
150
151# IntelliJ
152/out/
153
154# mpeltonen/sbt-idea plugin
155.idea_modules/
156
157# JIRA plugin
158atlassian-ide-plugin.xml
159
160### Eclipse ###
161
162.metadata
163bin/
164tmp/
165*.tmp
166*.bak
167*.swp
168*~.nib
169local.properties
170.settings/
171.loadpath
172.recommenders
173
174# Eclipse Core
175.project
176
177# External tool builders
178.externalToolBuilders/
179
180# Locally stored "Eclipse launch configurations"
181*.launch
182
183# CDT-specific (C/C++ Development Tooling)
184.cproject
185
186# JDT-specific (Eclipse Java Development Tools)
187.classpath
188
189# Java annotation processor (APT)
190.factorypath
191
192# sbteclipse plugin
193.target
194
195# Tern plugin
196.tern-project
197
198# TeXlipse plugin
199.texlipse
200
201# STS (Spring Tool Suite)
202.springBeans
203
204# Code Recommenders
205.recommenders/
206
207
208### Java ###
209*.class
210
211# Package Files #
212*.jar
213*.war
214*.ear
215
216# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
217hs_err_pid*
218
219### Gradle ###
220.gradle
221/build/
222
223# Ignore Gradle GUI config
224gradle-app.setting
225
226# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
227!gradle-wrapper.jar
228
229# Cache of project
230.gradletasknamecache \ No newline at end of file