Skip to content

Commit

Permalink
✨initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Californ1a committed Sep 2, 2020
0 parents commit 7c1e9a5
Show file tree
Hide file tree
Showing 6 changed files with 2,281 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"env": {
"node": true,
"commonjs": true,
"es6": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"quotes": ["error", "double"],
"arrow-parens": ["error", "as-needed", {
"requireForBlockBody": true
}],
"arrow-body-style": ["warn", "as-needed"],
"indent": ["error", "tab", {
"SwitchCase": 1
}],
"no-param-reassign": ["error", {
"props": false
}],
"no-restricted-syntax": ["error", {
"selector": "ForInStatement",
"message": "for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array."
}, {
"selector": "LabeledStatement",
"message": "Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand."
}, {
"selector": "WithStatement",
"message": "`with` is disallowed in strict mode because it makes code impossible to predict and optimize."
}],
"no-tabs": 0,
"no-console": 0,
"no-nested-ternary": 0
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.env
Loading

0 comments on commit 7c1e9a5

Please sign in to comment.