Added cache exchange urq, fixed eslint, added prettier, upgraded yarn, added statsSite command.
All checks were successful
Main / build-and-push-docker-image (20.x) (push) Successful in 4m58s

This commit is contained in:
2026-01-02 10:10:20 -05:00
parent c088d7c4a5
commit df433c1951
7 changed files with 301 additions and 49 deletions

View File

@@ -1,9 +1,11 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import { defineConfig, globalIgnores } from "eslint/config";
import tseslint from "typescript-eslint";
/** @type {import('eslint').Linter.Config[]} */
export default [
export default defineConfig([
globalIgnores(["build/"]),
{ files: ["**/*.{js,mjs,cjs,ts}"] },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
@@ -22,4 +24,4 @@ export default [
]
}
}
];
]);