Formed structure of the repository

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2020-02-13 14:30:54 +04:00
parent 5b5f4751a9
commit 9509148e9d
9 changed files with 506 additions and 399 deletions

15
.eslintrc.json Normal file
View File

@ -0,0 +1,15 @@
{
"env": {
"es6": true,
"node": true
},
"extends": "./javascript",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
}
}