|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
|
|
|
2
|
+# Created by https://www.gitignore.io/api/osx,node,linux,emacs,windows,webstorm,visualstudiocode
|
|
|
3
|
+
|
|
|
4
|
+### Emacs ###
|
|
|
5
|
+# -*- mode: gitignore; -*-
|
|
|
6
|
+*~
|
|
|
7
|
+\#*\#
|
|
|
8
|
+/.emacs.desktop
|
|
|
9
|
+/.emacs.desktop.lock
|
|
|
10
|
+*.elc
|
|
|
11
|
+auto-save-list
|
|
|
12
|
+tramp
|
|
|
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/
|
|
|
37
|
+dist/
|
|
|
38
|
+
|
|
|
39
|
+# Flycheck
|
|
|
40
|
+flycheck_*.el
|
|
|
41
|
+
|
|
|
42
|
+# server auth directory
|
|
|
43
|
+/server/
|
|
|
44
|
+
|
|
|
45
|
+# projectiles files
|
|
|
46
|
+.projectile
|
|
|
47
|
+
|
|
|
48
|
+# directory configuration
|
|
|
49
|
+.dir-locals.el
|
|
|
50
|
+
|
|
|
51
|
+### Linux ###
|
|
|
52
|
+
|
|
|
53
|
+# temporary files which can be created if a process still has a handle open of a deleted file
|
|
|
54
|
+.fuse_hidden*
|
|
|
55
|
+
|
|
|
56
|
+# KDE directory preferences
|
|
|
57
|
+.directory
|
|
|
58
|
+
|
|
|
59
|
+# Linux trash folder which might appear on any partition or disk
|
|
|
60
|
+.Trash-*
|
|
|
61
|
+
|
|
|
62
|
+# .nfs files are created when an open file is removed but is still being accessed
|
|
|
63
|
+.nfs*
|
|
|
64
|
+
|
|
|
65
|
+### Node ###
|
|
|
66
|
+# Logs
|
|
|
67
|
+logs
|
|
|
68
|
+*.log
|
|
|
69
|
+npm-debug.log*
|
|
|
70
|
+yarn-debug.log*
|
|
|
71
|
+yarn-error.log*
|
|
|
72
|
+
|
|
|
73
|
+# Runtime data
|
|
|
74
|
+pids
|
|
|
75
|
+*.pid
|
|
|
76
|
+*.seed
|
|
|
77
|
+*.pid.lock
|
|
|
78
|
+
|
|
|
79
|
+# Directory for instrumented libs generated by jscoverage/JSCover
|
|
|
80
|
+lib-cov
|
|
|
81
|
+
|
|
|
82
|
+# Coverage directory used by tools like istanbul
|
|
|
83
|
+coverage
|
|
|
84
|
+
|
|
|
85
|
+# nyc test coverage
|
|
|
86
|
+.nyc_output
|
|
|
87
|
+
|
|
|
88
|
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
|
89
|
+.grunt
|
|
|
90
|
+
|
|
|
91
|
+# Bower dependency directory (https://bower.io/)
|
|
|
92
|
+bower_components
|
|
|
93
|
+
|
|
|
94
|
+# node-waf configuration
|
|
|
95
|
+.lock-wscript
|
|
|
96
|
+
|
|
|
97
|
+# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
|
98
|
+build/Release
|
|
|
99
|
+
|
|
|
100
|
+# Dependency directories
|
|
|
101
|
+node_modules/
|
|
|
102
|
+jspm_packages/
|
|
|
103
|
+
|
|
|
104
|
+# Typescript v1 declaration files
|
|
|
105
|
+typings/
|
|
|
106
|
+
|
|
|
107
|
+# Optional npm cache directory
|
|
|
108
|
+.npm
|
|
|
109
|
+
|
|
|
110
|
+# Optional eslint cache
|
|
|
111
|
+.eslintcache
|
|
|
112
|
+
|
|
|
113
|
+# Optional REPL history
|
|
|
114
|
+.node_repl_history
|
|
|
115
|
+
|
|
|
116
|
+# Output of 'npm pack'
|
|
|
117
|
+*.tgz
|
|
|
118
|
+
|
|
|
119
|
+# Yarn Integrity file
|
|
|
120
|
+.yarn-integrity
|
|
|
121
|
+
|
|
|
122
|
+# dotenv environment variables file
|
|
|
123
|
+.env
|
|
|
124
|
+
|
|
|
125
|
+
|
|
|
126
|
+### OSX ###
|
|
|
127
|
+*.DS_Store
|
|
|
128
|
+.AppleDouble
|
|
|
129
|
+.LSOverride
|
|
|
130
|
+
|
|
|
131
|
+# Icon must end with two \r
|
|
|
132
|
+Icon
|
|
|
133
|
+
|
|
|
134
|
+# Thumbnails
|
|
|
135
|
+._*
|
|
|
136
|
+
|
|
|
137
|
+# Files that might appear in the root of a volume
|
|
|
138
|
+.DocumentRevisions-V100
|
|
|
139
|
+.fseventsd
|
|
|
140
|
+.Spotlight-V100
|
|
|
141
|
+.TemporaryItems
|
|
|
142
|
+.Trashes
|
|
|
143
|
+.VolumeIcon.icns
|
|
|
144
|
+.com.apple.timemachine.donotpresent
|
|
|
145
|
+
|
|
|
146
|
+# Directories potentially created on remote AFP share
|
|
|
147
|
+.AppleDB
|
|
|
148
|
+.AppleDesktop
|
|
|
149
|
+Network Trash Folder
|
|
|
150
|
+Temporary Items
|
|
|
151
|
+.apdisk
|
|
|
152
|
+
|
|
|
153
|
+### VisualStudioCode ###
|
|
|
154
|
+.vscode/*
|
|
|
155
|
+!.vscode/settings.json
|
|
|
156
|
+!.vscode/tasks.json
|
|
|
157
|
+!.vscode/launch.json
|
|
|
158
|
+!.vscode/extensions.json
|
|
|
159
|
+
|
|
|
160
|
+### WebStorm ###
|
|
|
161
|
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
|
162
|
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
|
163
|
+
|
|
|
164
|
+# User-specific stuff:
|
|
|
165
|
+.idea/**/workspace.xml
|
|
|
166
|
+.idea/**/tasks.xml
|
|
|
167
|
+.idea/dictionaries
|
|
|
168
|
+
|
|
|
169
|
+# Sensitive or high-churn files:
|
|
|
170
|
+.idea/**/dataSources/
|
|
|
171
|
+.idea/**/dataSources.ids
|
|
|
172
|
+.idea/**/dataSources.xml
|
|
|
173
|
+.idea/**/dataSources.local.xml
|
|
|
174
|
+.idea/**/sqlDataSources.xml
|
|
|
175
|
+.idea/**/dynamic.xml
|
|
|
176
|
+.idea/**/uiDesigner.xml
|
|
|
177
|
+
|
|
|
178
|
+# Gradle:
|
|
|
179
|
+.idea/**/gradle.xml
|
|
|
180
|
+.idea/**/libraries
|
|
|
181
|
+
|
|
|
182
|
+# CMake
|
|
|
183
|
+cmake-build-debug/
|
|
|
184
|
+
|
|
|
185
|
+# Mongo Explorer plugin:
|
|
|
186
|
+.idea/**/mongoSettings.xml
|
|
|
187
|
+
|
|
|
188
|
+## File-based project format:
|
|
|
189
|
+*.iws
|
|
|
190
|
+
|
|
|
191
|
+## Plugin-specific files:
|
|
|
192
|
+
|
|
|
193
|
+# IntelliJ
|
|
|
194
|
+/out/
|
|
|
195
|
+
|
|
|
196
|
+# mpeltonen/sbt-idea plugin
|
|
|
197
|
+.idea_modules/
|
|
|
198
|
+
|
|
|
199
|
+# JIRA plugin
|
|
|
200
|
+atlassian-ide-plugin.xml
|
|
|
201
|
+
|
|
|
202
|
+# Cursive Clojure plugin
|
|
|
203
|
+.idea/replstate.xml
|
|
|
204
|
+
|
|
|
205
|
+# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
|
206
|
+com_crashlytics_export_strings.xml
|
|
|
207
|
+crashlytics.properties
|
|
|
208
|
+crashlytics-build.properties
|
|
|
209
|
+fabric.properties
|
|
|
210
|
+
|
|
|
211
|
+### WebStorm Patch ###
|
|
|
212
|
+# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
|
213
|
+
|
|
|
214
|
+# *.iml
|
|
|
215
|
+# modules.xml
|
|
|
216
|
+# .idea/misc.xml
|
|
|
217
|
+# *.ipr
|
|
|
218
|
+
|
|
|
219
|
+# Sonarlint plugin
|
|
|
220
|
+.idea/sonarlint
|
|
|
221
|
+
|
|
|
222
|
+### Windows ###
|
|
|
223
|
+# Windows thumbnail cache files
|
|
|
224
|
+Thumbs.db
|
|
|
225
|
+ehthumbs.db
|
|
|
226
|
+ehthumbs_vista.db
|
|
|
227
|
+
|
|
|
228
|
+# Folder config file
|
|
|
229
|
+Desktop.ini
|
|
|
230
|
+
|
|
|
231
|
+# Recycle Bin used on file shares
|
|
|
232
|
+$RECYCLE.BIN/
|
|
|
233
|
+
|
|
|
234
|
+# Windows Installer files
|
|
|
235
|
+*.cab
|
|
|
236
|
+*.msi
|
|
|
237
|
+*.msm
|
|
|
238
|
+*.msp
|
|
|
239
|
+
|
|
|
240
|
+# Windows shortcuts
|
|
|
241
|
+*.lnk
|
|
|
242
|
+
|
|
|
243
|
+# End of https://www.gitignore.io/api/osx,node,linux,emacs,windows,webstorm,visualstudiocode
|