-
Notifications
You must be signed in to change notification settings - Fork 10
/
.gitignore
80 lines (65 loc) · 1.75 KB
/
.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
########################
# node.js / npm
########################
lib-cov
*.seed
*.csv
*.dat
*.out
*.pid
*.gz
pids
node_modules
results
########################
# misc / editors
########################
*~
~$*
*#
.DS_STORE
.netbeans
nbproject
.idea
########################
# local config
########################
nbproject/private
*/node_modules/
.tmp/
config/local
logs/
# Soft - Database and UML
*sws
########################################################################################################################
## ################################################ Generated files ################################################ ##
########################################################################################################################
########################
# Generated TS controller's files
########################
# Ignore all map.js files and .js files.
api/controllers/**/*.js*
# Ignore all TS definition files.
api/controllers/**/*.d.ts
# But don't ignore those whose ends with "Controller.js", because they're Sails native controllers.
!api/controllers/**/*Controller.js
# But do ignore our CoreController.js and CoreController.js.map generated file
api/controllers/**/CoreController.js*
########################
# Generated TS model's files
########################
# Ignore all map.js files and .js files.
api/db/models/**/*.js*
# Ignore all TS definition files.
api/db/models/**/*.d.ts
########################
# Generated TS lib's files
########################
# Ignore all map.js files and .js files. But only in the main directory.
api/lib/*.js*
# Ignore all TS definition files. But only in the main directory.
api/lib/*.d.ts
########################
# Temporary documentation
########################
documentation/Developper Guide