Skip to content

Commit 49c3dd9

Browse files
committed
Added stuff
1 parent 264970d commit 49c3dd9

File tree

4 files changed

+78
-0
lines changed

4 files changed

+78
-0
lines changed

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2+
# Created by https://www.gitignore.io/api/node,c++,sublimetext
3+
4+
### Node ###
15
# Logs
26
logs
37
*.log
@@ -35,3 +39,65 @@ jspm_packages
3539

3640
# Optional REPL history
3741
.node_repl_history
42+
43+
44+
### C++ ###
45+
# Compiled Object files
46+
*.slo
47+
*.lo
48+
*.o
49+
*.obj
50+
51+
# Precompiled Headers
52+
*.gch
53+
*.pch
54+
55+
# Compiled Dynamic libraries
56+
*.so
57+
*.dylib
58+
*.dll
59+
60+
# Fortran module files
61+
*.mod
62+
*.smod
63+
64+
# Compiled Static libraries
65+
*.lai
66+
*.la
67+
*.a
68+
*.lib
69+
70+
# Executables
71+
*.exe
72+
*.out
73+
*.app
74+
75+
76+
### SublimeText ###
77+
# cache files for sublime text
78+
*.tmlanguage.cache
79+
*.tmPreferences.cache
80+
*.stTheme.cache
81+
82+
# workspace files are user-specific
83+
*.sublime-workspace
84+
85+
# project files should be checked into the repository, unless a significant
86+
# proportion of contributors will probably not be using SublimeText
87+
# *.sublime-project
88+
89+
# sftp configuration file
90+
sftp-config.json
91+
92+
# Package control specific files
93+
Package Control.last-run
94+
Package Control.ca-list
95+
Package Control.ca-bundle
96+
Package Control.system-ca-bundle
97+
Package Control.cache/
98+
Package Control.ca-certs/
99+
bh_unicode_properties.cache
100+
101+
# Sublime-github package stores a github token in this file
102+
# https://packagecontrol.io/packages/sublime-github
103+
GitHub.sublime-settings

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "mozjpeg"]
2+
path = mozjpeg
3+
url = https://github.com/mozilla/mozjpeg.git

mozjpeg

Submodule mozjpeg added at 5198654

mozjpeg-js.sublime-project

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"folders":
3+
[
4+
{
5+
"path": "."
6+
}
7+
]
8+
}

0 commit comments

Comments
 (0)