Skip to content

Commit b61e301

Browse files
authored
Merge pull request #1 from SS13HUB/contribute
Add LICENSE, git and VSCode stuff
2 parents af643f2 + 39754fc commit b61e301

File tree

3 files changed

+239
-0
lines changed

3 files changed

+239
-0
lines changed

.gitignore

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
2+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
3+
4+
# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,node
5+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,node
6+
7+
### Node ###
8+
# Logs
9+
logs
10+
*.log
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
lerna-debug.log*
15+
.pnpm-debug.log*
16+
17+
# Diagnostic reports (https://nodejs.org/api/report.html)
18+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
19+
20+
# Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
# Directory for instrumented libs generated by jscoverage/JSCover
27+
lib-cov
28+
29+
# Coverage directory used by tools like istanbul
30+
coverage
31+
*.lcov
32+
33+
# nyc test coverage
34+
.nyc_output
35+
36+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
37+
.grunt
38+
39+
# Bower dependency directory (https://bower.io/)
40+
bower_components
41+
42+
# node-waf configuration
43+
.lock-wscript
44+
45+
# Compiled binary addons (https://nodejs.org/api/addons.html)
46+
build/Release
47+
48+
# Dependency directories
49+
node_modules/
50+
jspm_packages/
51+
52+
# Snowpack dependency directory (https://snowpack.dev/)
53+
web_modules/
54+
55+
# TypeScript cache
56+
*.tsbuildinfo
57+
58+
# Optional npm cache directory
59+
.npm
60+
61+
# Optional eslint cache
62+
.eslintcache
63+
64+
# Optional stylelint cache
65+
.stylelintcache
66+
67+
# Microbundle cache
68+
.rpt2_cache/
69+
.rts2_cache_cjs/
70+
.rts2_cache_es/
71+
.rts2_cache_umd/
72+
73+
# Optional REPL history
74+
.node_repl_history
75+
76+
# Output of 'npm pack'
77+
*.tgz
78+
79+
# Yarn Integrity file
80+
.yarn-integrity
81+
82+
# dotenv environment variable files
83+
.env
84+
.env.development.local
85+
.env.test.local
86+
.env.production.local
87+
.env.local
88+
89+
# parcel-bundler cache (https://parceljs.org/)
90+
.cache
91+
.parcel-cache
92+
93+
# Next.js build output
94+
.next
95+
out
96+
97+
# Nuxt.js build / generate output
98+
.nuxt
99+
dist
100+
101+
# Gatsby files
102+
.cache/
103+
# Comment in the public line in if your project uses Gatsby and not Next.js
104+
# https://nextjs.org/blog/next-9-1#public-directory-support
105+
# public
106+
107+
# vuepress build output
108+
.vuepress/dist
109+
110+
# vuepress v2.x temp and cache directory
111+
.temp
112+
113+
# Docusaurus cache and generated files
114+
.docusaurus
115+
116+
# Serverless directories
117+
.serverless/
118+
119+
# FuseBox cache
120+
.fusebox/
121+
122+
# DynamoDB Local files
123+
.dynamodb/
124+
125+
# TernJS port file
126+
.tern-port
127+
128+
# Stores VSCode versions used for testing VSCode extensions
129+
.vscode-test
130+
131+
# yarn v2
132+
.yarn/cache
133+
.yarn/unplugged
134+
.yarn/build-state.yml
135+
.yarn/install-state.gz
136+
.pnp.*
137+
138+
### Node Patch ###
139+
# Serverless Webpack directories
140+
.webpack/
141+
142+
# Optional stylelint cache
143+
144+
# SvelteKit build / generate output
145+
.svelte-kit
146+
147+
### VisualStudioCode ###
148+
.vscode/*
149+
!.vscode/settings.json
150+
!.vscode/tasks.json
151+
!.vscode/launch.json
152+
!.vscode/extensions.json
153+
!.vscode/*.code-snippets
154+
155+
# Local History for Visual Studio Code
156+
.history/
157+
158+
# Built Visual Studio Code Extensions
159+
*.vsix
160+
161+
### VisualStudioCode Patch ###
162+
# Ignore all local history of files
163+
.history
164+
.ionide
165+
166+
# Support for Project snippet scope
167+
168+
### Windows ###
169+
# Windows thumbnail cache files
170+
Thumbs.db
171+
Thumbs.db:encryptable
172+
ehthumbs.db
173+
ehthumbs_vista.db
174+
175+
# Dump file
176+
*.stackdump
177+
178+
# Folder config file
179+
[Dd]esktop.ini
180+
181+
# Recycle Bin used on file shares
182+
$RECYCLE.BIN/
183+
184+
# Windows Installer files
185+
*.cab
186+
*.msi
187+
*.msix
188+
*.msm
189+
*.msp
190+
191+
# Windows shortcuts
192+
*.lnk
193+
194+
# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,node
195+
196+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
197+
198+
199+
package-lock.json
200+
.env

.vscode/tasks.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "install",
7+
"problemMatcher": [],
8+
"label": "npm: install",
9+
"detail": "install dependencies from package"
10+
},
11+
{
12+
"type": "npm",
13+
"script": "start",
14+
"problemMatcher": [],
15+
"label": "npm: start",
16+
"detail": "node index.js",
17+
"group": {
18+
"kind": "build",
19+
"isDefault": true
20+
}
21+
}
22+
]
23+
}

LICENSE

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
ISC License
3+
4+
Copyright (c) 2022, Expectatives
5+
6+
Permission to use, copy, modify, and/or distribute this software for any
7+
purpose with or without fee is hereby granted, provided that the above
8+
copyright notice and this permission notice appear in all copies.
9+
10+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

0 commit comments

Comments
 (0)