Skip to content

Commit

Permalink
initial commit with code in WIP state
Browse files Browse the repository at this point in the history
  • Loading branch information
dyte committed Aug 7, 2019
1 parent ce5d48e commit c3fff5e
Show file tree
Hide file tree
Showing 9 changed files with 1,468 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-unused-vars": "off",
"no-empty": "off",
}
}
Loading

0 comments on commit c3fff5e

Please sign in to comment.