feature: Initial commit

This commit is contained in:
Keith Solomon
2026-04-13 20:06:32 -05:00
commit 351dc06ec4
38 changed files with 8138 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"extends": ["airbnb-base"],
"env": {
"browser": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "script",
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"window": "readonly"
},
"rules": {
"comma-dangle": "off",
"func-names": "off",
"indent": "off",
"max-len": "off",
"no-undef": "off",
"no-underscore-dangle": "off",
"object-shorthand": "off",
"operator-linebreak": "off",
"prefer-arrow-callback": "off",
"prefer-destructuring": "off",
"prefer-template": "off"
}
}