-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
67 lines (54 loc) · 864 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# =======
# default
# =======
.tmp*
.project
.settings/
.livereload
.idea
.DS_Store?
ehthumbs.db
Icon?
Thumbs.db
npm-debug.log
# ================
# project specific
# ================
# ignore node_modules since user can `npm install --dev`
node_modules/
# ignore coverage reports since they change at each build
coverage/
# ignore HTML docs since they are only useful for gh-pages branch
doc_html/
# these files are only needed by testling
tests/testling/
# -----------------------------------
# ignore files added by `npm publish`
# -----------------------------------
/array.js
/array/
/collection.js
/collection/
/date/
/date.js
/financial.js
/financial/
/function.js
/function/
/index.js
/lang.js
/lang/
/math.js
/math/
/number.js
/number/
/object.js
/object/
/queryString.js
/queryString/
/random.js
/random/
/string.js
/string/
/time.js
/time/