Skip to content

Commit 1864300

Browse files
committedAug 10, 2016
Initial commit
1 parent bcef528 commit 1864300

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+8515
-56
lines changed
 

‎.gitignore

+174
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
# =======
2+
# Ignores specific to Darkness
3+
/chrome-production
4+
*.zip
5+
6+
# =======
7+
# Created by https://www.gitignore.io/api/node,sass,linux,macos,windows,jetbrains,git
8+
9+
### Node ###
10+
# Logs
11+
logs
12+
*.log
13+
npm-debug.log*
14+
15+
# Runtime data
16+
pids
17+
*.pid
18+
*.seed
19+
*.pid.lock
20+
21+
# Directory for instrumented libs generated by jscoverage/JSCover
22+
lib-cov
23+
24+
# Coverage directory used by tools like istanbul
25+
coverage
26+
27+
# nyc test coverage
28+
.nyc_output
29+
30+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
31+
.grunt
32+
33+
# node-waf configuration
34+
.lock-wscript
35+
36+
# Compiled binary addons (http://nodejs.org/api/addons.html)
37+
build/Release
38+
39+
# Dependency directories
40+
node_modules
41+
jspm_packages
42+
43+
# Optional npm cache directory
44+
.npm
45+
46+
# Optional REPL history
47+
.node_repl_history
48+
49+
50+
### Sass ###
51+
.sass-cache/
52+
*.css.map
53+
54+
55+
### Linux ###
56+
*~
57+
58+
# temporary files which can be created if a process still has a handle open of a deleted file
59+
.fuse_hidden*
60+
61+
# KDE directory preferences
62+
.directory
63+
64+
# Linux trash folder which might appear on any partition or disk
65+
.Trash-*
66+
67+
68+
### macOS ###
69+
*.DS_Store
70+
.AppleDouble
71+
.LSOverride
72+
73+
# Icon must end with two \r
74+
Icon
75+
76+
77+
# Thumbnails
78+
._*
79+
80+
# Files that might appear in the root of a volume
81+
.DocumentRevisions-V100
82+
.fseventsd
83+
.Spotlight-V100
84+
.TemporaryItems
85+
.Trashes
86+
.VolumeIcon.icns
87+
.com.apple.timemachine.donotpresent
88+
89+
# Directories potentially created on remote AFP share
90+
.AppleDB
91+
.AppleDesktop
92+
Network Trash Folder
93+
Temporary Items
94+
.apdisk
95+
96+
97+
### Windows ###
98+
# Windows image file caches
99+
Thumbs.db
100+
ehthumbs.db
101+
102+
# Folder config file
103+
Desktop.ini
104+
105+
# Recycle Bin used on file shares
106+
$RECYCLE.BIN/
107+
108+
# Windows Installer files
109+
*.cab
110+
*.msi
111+
*.msm
112+
*.msp
113+
114+
# Windows shortcuts
115+
*.lnk
116+
117+
118+
### JetBrains ###
119+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
120+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
121+
122+
# User-specific stuff:
123+
.idea/workspace.xml
124+
.idea/tasks.xml
125+
.idea/dictionaries
126+
.idea/vcs.xml
127+
.idea/jsLibraryMappings.xml
128+
129+
# Sensitive or high-churn files:
130+
.idea/dataSources.ids
131+
.idea/dataSources.xml
132+
.idea/dataSources.local.xml
133+
.idea/sqlDataSources.xml
134+
.idea/dynamic.xml
135+
.idea/uiDesigner.xml
136+
137+
# Gradle:
138+
.idea/gradle.xml
139+
.idea/libraries
140+
141+
# Mongo Explorer plugin:
142+
.idea/mongoSettings.xml
143+
144+
## File-based project format:
145+
*.iws
146+
147+
## Plugin-specific files:
148+
149+
# IntelliJ
150+
/out/
151+
152+
# mpeltonen/sbt-idea plugin
153+
.idea_modules/
154+
155+
# JIRA plugin
156+
atlassian-ide-plugin.xml
157+
158+
# Crashlytics plugin (for Android Studio and IntelliJ)
159+
com_crashlytics_export_strings.xml
160+
crashlytics.properties
161+
crashlytics-build.properties
162+
fabric.properties
163+
164+
### JetBrains Patch ###
165+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
166+
167+
# *.iml
168+
# modules.xml
169+
# .idea/misc.xml
170+
# *.ipr
171+
172+
173+
### Git ###
174+
*.orig

‎AUTHORS.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Authors ordered by first contribution:
2+
Lior <lior@liorgrossman.com>

0 commit comments

Comments
 (0)
Please sign in to comment.