Initial Commit

This commit is contained in:
btowles
2021-08-16 02:36:15 +00:00
commit 392ef6ccc0
20 changed files with 893 additions and 0 deletions

16
.eslintrc.json Normal file
View File

@@ -0,0 +1,16 @@
{
"rules": {
"indent": ["error", "tab"],
"quotes": ["error", "double"],
"max-len": ["error", 250],
"curly": "error",
"camelcase": ["error", {"properties": "never"}],
"no-trailing-spaces": ["error"],
"no-irregular-whitespace": ["error"]
},
"env": {
"browser": true,
"node": true,
"es6": true
}
}