diff --git a/eslint.config.mjs b/eslint.config.mjs
index 73adedc..72ae174 100644
--- a/eslint.config.mjs
+++ b/eslint.config.mjs
@@ -21,7 +21,7 @@ export default [
// This causes a circular fix error?
"stylistic/no-multi-spaces": "off",
// This must be off because this is not a module.
- "import/extensions": "off",
+ "import/extensions": [ "error", "never" ],
// This is a web app
"no-console": "off",
// Sometimes a component class will be empty. Not all components require logic.
diff --git a/src/app/app.config.ts b/src/app/app.config.ts
index ae50fb5..f900da7 100644
--- a/src/app/app.config.ts
+++ b/src/app/app.config.ts
@@ -8,6 +8,7 @@ import {
provideBrowserGlobalErrorListeners,
} from "@angular/core";
import { provideRouter } from "@angular/router";
+// eslint-disable-next-line import/extensions -- This is not a file extension.
import { routes } from "./app.routes";
export const appConfig: ApplicationConfig = {
diff --git a/src/app/app.html b/src/app/app.html
index 7528372..04270f8 100644
--- a/src/app/app.html
+++ b/src/app/app.html
@@ -1,342 +1,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-