Skip to content

Commit

Permalink
chore: update the project structure and files.
Browse files Browse the repository at this point in the history
  • Loading branch information
virtyaluk committed Jan 5, 2020
1 parent 511a054 commit 2ca8f6d
Show file tree
Hide file tree
Showing 12 changed files with 195 additions and 419 deletions.
339 changes: 0 additions & 339 deletions .eslintrc

This file was deleted.

46 changes: 46 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"no-var": "error",
"object-curly-spacing": [
"error",
"always"
],
"eqeqeq": "error",
"no-unused-vars": "error"
}
}
Loading

0 comments on commit 2ca8f6d

Please sign in to comment.