feat: components

This commit is contained in:
2025-12-27 13:05:33 -08:00
parent 6bbcb4d8fa
commit d33422be37
45 changed files with 543 additions and 0 deletions
+4
View File
@@ -24,6 +24,8 @@ export default [
"import/extensions": "off",
// This is a web app
"no-console": "off",
// Sometimes a component class will be empty. Not all components require logic.
"@typescript-eslint/no-extraneous-class": "off",
}
},
{
@@ -42,6 +44,8 @@ export default [
"import/extensions": "off",
// We turn this off because the test bed has weak types.
"@typescript-eslint/consistent-type-assertions": "off",
// This one allows us to define test globals.
"@typescript-eslint/init-declarations": "off",
}
}
]