Initial commit

This commit is contained in:
Neill Cox 2024-05-04 19:45:07 +10:00
commit 03761d2e2f
17 changed files with 5662 additions and 0 deletions

16
.eslintrc.json Normal file
View file

@ -0,0 +1,16 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"standard"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent": ["error", 4]
}
}