Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
claytoncarney committed Nov 17, 2022
1 parent e46a044 commit e10ade4
Show file tree
Hide file tree
Showing 39 changed files with 591 additions and 685 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
module.exports = {
"env": {
"browser": true,
"es6": true
"es6": true,
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
"sourceType": "module",
},
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1
"SwitchCase": 1,
}
],
"linebreak-style": [
"error",
"windows"
"windows",
],
"no-console": [
"error",
{
"allow": ["log"]
"allow": ["log"],
}
],
"quotes": [
"error",
"single",
{
"avoidEscape": true
"avoidEscape": true,
}
],
"semi": [
"error",
"always"
"always",
]
}
};
Loading

0 comments on commit e10ade4

Please sign in to comment.