Initial commit

This commit is contained in:
He4eT 2019-09-23 16:26:37 +05:00
commit 6849e7dec7
4 changed files with 4582 additions and 0 deletions

19
.eslintrc.js Normal file
View file

@ -0,0 +1,19 @@
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true
},
extends: [
'standard'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018
},
rules: {
}
}