First commit

This commit is contained in:
2024-06-13 09:45:05 +02:00
commit 8073f47c48
11 changed files with 2082 additions and 0 deletions

14
.eslintrc Normal file
View File

@@ -0,0 +1,14 @@
{
"extends": "eslint:recommended",
"env": {
"browser": true,
"es6" : true,
},
"rules": {
// Override our default settings just for this directory
"indent": ["error", 2],
"eqeqeq": "warn",
"strict": "off",
"arrow-body-style": ["error", "always"]
},
}