Skip to content

Commit 756a24c

Browse files
committed
Prepare for "githubing"
1 parent a216bbd commit 756a24c

File tree

7 files changed

+500
-14
lines changed

7 files changed

+500
-14
lines changed

.gitignore

Lines changed: 222 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Linux template
3+
*~
4+
5+
# temporary files which can be created if a process still has a handle open of a deleted file
6+
.fuse_hidden*
7+
8+
# KDE directory preferences
9+
.directory
10+
11+
# Linux trash folder which might appear on any partition or disk
12+
.Trash-*
13+
14+
# .nfs files are created when an open file is removed but is still being accessed
15+
.nfs*
16+
### SublimeText template
17+
# Cache files for Sublime Text
18+
*.tmlanguage.cache
19+
*.tmPreferences.cache
20+
*.stTheme.cache
21+
22+
# Workspace files are user-specific
23+
*.sublime-workspace
24+
25+
# Project files should be checked into the repository, unless a significant
26+
# proportion of contributors will probably not be using Sublime Text
27+
# *.sublime-project
28+
29+
# SFTP configuration file
30+
sftp-config.json
31+
32+
# Package control specific files
33+
Package Control.last-run
34+
Package Control.ca-list
35+
Package Control.ca-bundle
36+
Package Control.system-ca-bundle
37+
Package Control.cache/
38+
Package Control.ca-certs/
39+
Package Control.merged-ca-bundle
40+
Package Control.user-ca-bundle
41+
oscrypto-ca-bundle.crt
42+
bh_unicode_properties.cache
43+
44+
# Sublime-github package stores a github token in this file
45+
# https://packagecontrol.io/packages/sublime-github
46+
GitHub.sublime-settings
47+
### Windows template
48+
# Windows thumbnail cache files
49+
Thumbs.db
50+
ehthumbs.db
51+
ehthumbs_vista.db
52+
53+
# Dump file
54+
*.stackdump
55+
56+
# Folder config file
57+
[Dd]esktop.ini
58+
59+
# Recycle Bin used on file shares
60+
$RECYCLE.BIN/
61+
62+
# Windows Installer files
63+
*.cab
64+
*.msi
65+
*.msix
66+
*.msm
67+
*.msp
68+
69+
# Windows shortcuts
70+
*.lnk
71+
### macOS template
72+
# General
73+
.DS_Store
74+
.AppleDouble
75+
.LSOverride
76+
77+
# Icon must end with two \r
78+
Icon
79+
80+
# Thumbnails
81+
._*
82+
83+
# Files that might appear in the root of a volume
84+
.DocumentRevisions-V100
85+
.fseventsd
86+
.Spotlight-V100
87+
.TemporaryItems
88+
.Trashes
89+
.VolumeIcon.icns
90+
.com.apple.timemachine.donotpresent
91+
92+
# Directories potentially created on remote AFP share
93+
.AppleDB
94+
.AppleDesktop
95+
Network Trash Folder
96+
Temporary Items
97+
.apdisk
98+
### VisualStudioCode template
99+
.vscode/*
100+
!.vscode/settings.json
101+
!.vscode/tasks.json
102+
!.vscode/launch.json
103+
!.vscode/extensions.json
104+
### Eclipse template
105+
106+
.metadata
107+
bin/
108+
tmp/
109+
*.tmp
110+
*.bak
111+
*.swp
112+
*~.nib
113+
local.properties
114+
.settings/
115+
.loadpath
116+
.recommenders
117+
118+
# External tool builders
119+
.externalToolBuilders/
120+
121+
# Locally stored "Eclipse launch configurations"
122+
*.launch
123+
124+
# PyDev specific (Python IDE for Eclipse)
125+
*.pydevproject
126+
127+
# CDT-specific (C/C++ Development Tooling)
128+
.cproject
129+
130+
# CDT- autotools
131+
.autotools
132+
133+
# Java annotation processor (APT)
134+
.factorypath
135+
136+
# PDT-specific (PHP Development Tools)
137+
.buildpath
138+
139+
# sbteclipse plugin
140+
.target
141+
142+
# Tern plugin
143+
.tern-project
144+
145+
# TeXlipse plugin
146+
.texlipse
147+
148+
# STS (Spring Tool Suite)
149+
.springBeans
150+
151+
# Code Recommenders
152+
.recommenders/
153+
154+
# Annotation Processing
155+
.apt_generated/
156+
157+
# Scala IDE specific (Scala & Java development for Eclipse)
158+
.cache-main
159+
.scala_dependencies
160+
.worksheet
161+
### JetBrains template
162+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
163+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
164+
165+
# User-specific stuff
166+
.idea/**/workspace.xml
167+
.idea/**/tasks.xml
168+
.idea/**/usage.statistics.xml
169+
.idea/**/dictionaries
170+
.idea/**/shelf
171+
172+
# Sensitive or high-churn files
173+
.idea/**/dataSources/
174+
.idea/**/dataSources.ids
175+
.idea/**/dataSources.local.xml
176+
.idea/**/sqlDataSources.xml
177+
.idea/**/dynamic.xml
178+
.idea/**/uiDesigner.xml
179+
.idea/**/dbnavigator.xml
180+
181+
# Gradle
182+
.idea/**/gradle.xml
183+
.idea/**/libraries
184+
185+
# Gradle and Maven with auto-import
186+
# When using Gradle or Maven with auto-import, you should exclude module files,
187+
# since they will be recreated, and may cause churn. Uncomment if using
188+
# auto-import.
189+
# .idea/modules.xml
190+
# .idea/*.iml
191+
# .idea/modules
192+
193+
# CMake
194+
cmake-build-*/
195+
196+
# Mongo Explorer plugin
197+
.idea/**/mongoSettings.xml
198+
199+
# File-based project format
200+
*.iws
201+
202+
# IntelliJ
203+
out/
204+
205+
# mpeltonen/sbt-idea plugin
206+
.idea_modules/
207+
208+
# JIRA plugin
209+
atlassian-ide-plugin.xml
210+
211+
# Cursive Clojure plugin
212+
.idea/replstate.xml
213+
214+
# Crashlytics plugin (for Android Studio and IntelliJ)
215+
com_crashlytics_export_strings.xml
216+
crashlytics.properties
217+
crashlytics-build.properties
218+
fabric.properties
219+
220+
# Editor-based Rest Client
221+
.idea/httpRequests
222+

ChangeLog.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)