summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorGravatar Runemoro2020-06-03 13:39:42 -0400
committerGravatar GitHub2020-06-03 18:39:42 +0100
commit0f47403d0220757fed189b76e2071e25b1025cb8 (patch)
tree879bf72c4476f0a5e0d82da99d7ff2b2276bcaca /.gitignore
parentFix search dialog hanging for a short time sometimes (#250) (diff)
downloadenigma-0f47403d0220757fed189b76e2071e25b1025cb8.tar.gz
enigma-0f47403d0220757fed189b76e2071e25b1025cb8.tar.xz
enigma-0f47403d0220757fed189b76e2071e25b1025cb8.zip
Split GUI code to separate module (#242)
* Split into modules * Post merge compile fixes Co-authored-by: modmuss50 <modmuss50@gmail.com>
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore246
1 files changed, 25 insertions, 221 deletions
diff --git a/.gitignore b/.gitignore
index 662e408b..89623a31 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,231 +1,35 @@
1### Windows ### 1# Gradle
2# Windows image file caches 2.gradle
3Thumbs.db
4ehthumbs.db
5
6# Folder config file
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
147*.ipr
148
149## Plugin-specific files:
150
151# IntelliJ
152/out/
153.idea
154
155# mpeltonen/sbt-idea plugin
156.idea_modules/
157
158# JIRA plugin
159atlassian-ide-plugin.xml
160
161### Eclipse ###
162 3
4# Eclipse
5.checkstyle
6.classpath
163.metadata 7.metadata
164bin/ 8.settings
165tmp/
166*.tmp
167*.bak
168*.swp
169*~.nib
170local.properties
171.settings/
172.loadpath
173.recommenders
174
175# Eclipse Core
176.project 9.project
177
178# External tool builders
179.externalToolBuilders/
180
181# Locally stored "Eclipse launch configurations"
182*.launch 10*.launch
183 11
184# CDT-specific (C/C++ Development Tooling) 12# Intellij/Idea
185.cproject
186
187# JDT-specific (Eclipse Java Development Tools)
188.classpath
189
190# Java annotation processor (APT)
191.factorypath 13.factorypath
14.idea
15*.iml
16*.ipr
17*.iws
192 18
193# sbteclipse plugin 19# Build artifacts
194.target 20bin/
195 21build/
196# Tern plugin 22jars/
197.tern-project 23out/
198 24classes/
199# TeXlipse plugin
200.texlipse
201
202# STS (Spring Tool Suite)
203.springBeans
204
205# Code Recommenders
206.recommenders/
207
208
209### Java ###
210*.class
211
212# Package Files #
213*.jar
214*.war
215*.ear
216
217# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
218hs_err_pid*
219
220### Gradle ###
221.gradle
222/build/
223 25
224# Ignore Gradle GUI config 26# Debug artifacts
225gradle-app.setting 27run
28*.log
226 29
227# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 30# Windows
228!gradle-wrapper.jar 31*.db
32$RECYCLE.BIN/
229 33
230# Cache of project 34# Mac
231.gradletasknamecache \ No newline at end of file 35.DS_Store