Skip to content

Commit c909d0f

Browse files
committed
init
0 parents  commit c909d0f

File tree

10 files changed

+6179
-0
lines changed

10 files changed

+6179
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
# trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.eslintrc

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"rules": {
3+
"no-console": 0,
4+
"no-underscore-dangle": 0,
5+
"no-unused-vars": ["error", { "argsIgnorePattern": "next" }],
6+
"no-use-before-define": ["error", { "variables": false }],
7+
"no-multi-str": 0,
8+
"no-continue": 0,
9+
"no-return-await": 0
10+
},
11+
"env": {
12+
"node": true,
13+
"mocha": true,
14+
"jest": true
15+
},
16+
"parserOptions": {
17+
"ecmaVersion": 9
18+
},
19+
"extends": [
20+
"airbnb-base"
21+
]
22+
}

.gitattributes

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Convert text file line endings to lf
2+
* text=auto
3+
*.js text
4+
# Denote all files that are truly binary and should not be modified.
5+
*.mp4 binary
6+
*.jpg binary

.gitignore

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Environment variables
2+
.env
3+
4+
# Logs
5+
logs
6+
*.log
7+
npm-debug.log*
8+
9+
# Documentation
10+
docs
11+
12+
# Websotrm
13+
.idea
14+
15+
# Runtime data
16+
pids
17+
*.pid
18+
*.seed
19+
20+
# Directory for instrumented libs generated by jscoverage/JSCover
21+
lib-cov
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage
25+
26+
# nyc test coverage
27+
.nyc_output
28+
29+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
30+
.grunt
31+
32+
# node-waf configuration
33+
.lock-wscript
34+
35+
# Compiled binary addons (http://nodejs.org/api/addons.html)
36+
build/Release
37+
38+
# Dependency directories
39+
node_modules
40+
jspm_packages
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional REPL history
46+
.node_repl_history
47+
48+
# CERTIFICATE
49+
id_rsa.pub

license.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Joynal Abedin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)