|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+# ---> Node
|
|
|
2
|
+# Logs
|
|
|
3
|
+logs
|
|
|
4
|
+*.log
|
|
|
5
|
+npm-debug.log*
|
|
|
6
|
+
|
|
|
7
|
+# Runtime data
|
|
|
8
|
+pids
|
|
|
9
|
+*.pid
|
|
|
10
|
+*.seed
|
|
|
11
|
+
|
|
|
12
|
+# Directory for instrumented libs generated by jscoverage/JSCover
|
|
|
13
|
+lib-cov
|
|
|
14
|
+
|
|
|
15
|
+# Coverage directory used by tools like istanbul
|
|
|
16
|
+coverage
|
|
|
17
|
+
|
|
|
18
|
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
|
19
|
+.grunt
|
|
|
20
|
+
|
|
|
21
|
+# node-waf configuration
|
|
|
22
|
+.lock-wscript
|
|
|
23
|
+
|
|
|
24
|
+# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
|
25
|
+build/Release
|
|
|
26
|
+
|
|
|
27
|
+# Dependency directory
|
|
|
28
|
+# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
|
|
|
29
|
+node_modules
|
|
|
30
|
+
|
|
|
31
|
+# ---> Emacs
|
|
|
32
|
+# -*- mode: gitignore; -*-
|
|
|
33
|
+*~
|
|
|
34
|
+\#*\#
|
|
|
35
|
+/.emacs.desktop
|
|
|
36
|
+/.emacs.desktop.lock
|
|
|
37
|
+*.elc
|
|
|
38
|
+auto-save-list
|
|
|
39
|
+tramp
|
|
|
40
|
+.\#*
|
|
|
41
|
+
|
|
|
42
|
+# Org-mode
|
|
|
43
|
+.org-id-locations
|
|
|
44
|
+*_archive
|
|
|
45
|
+
|
|
|
46
|
+# flymake-mode
|
|
|
47
|
+*_flymake.*
|
|
|
48
|
+
|
|
|
49
|
+# eshell files
|
|
|
50
|
+/eshell/history
|
|
|
51
|
+/eshell/lastdir
|
|
|
52
|
+
|
|
|
53
|
+# elpa packages
|
|
|
54
|
+/elpa/
|
|
|
55
|
+
|
|
|
56
|
+# reftex files
|
|
|
57
|
+*.rel
|
|
|
58
|
+
|
|
|
59
|
+# AUCTeX auto folder
|
|
|
60
|
+/auto/
|
|
|
61
|
+
|
|
|
62
|
+# cask packages
|
|
|
63
|
+.cask/
|
|
|
64
|
+
|
|
|
65
|
+# ---> VisualStudioCode
|
|
|
66
|
+.settings
|
|
|
67
|
+
|
|
|
68
|
+
|
|
|
69
|
+# ---> Linux
|
|
|
70
|
+*~
|
|
|
71
|
+
|
|
|
72
|
+# KDE directory preferences
|
|
|
73
|
+.directory
|
|
|
74
|
+
|
|
|
75
|
+# Linux trash folder which might appear on any partition or disk
|
|
|
76
|
+.Trash-*
|
|
|
77
|
+
|