Dashboard v2.0.0 #5

Merged
alu merged 47 commits from v2.0.0 into main 2026-08-10 21:10:15 +00:00
2 changed files with 27 additions and 26 deletions
Showing only changes of commit 91be26e320 - Show all commits
-2
View File
@@ -1,5 +1,3 @@
**/config.json
**/package-lock.json
**/node_modules
dist/*
go.sum
+5 -2
View File
@@ -2,7 +2,9 @@ import { defineConfig } from "eslint/config";
import globals from "globals";
import js from "@eslint/js";
export default defineConfig([js.configs.recommended,{
export default defineConfig([
js.configs.recommended,
{
languageOptions: {
globals: {
...globals.browser,
@@ -26,4 +28,5 @@ export default defineConfig([js.configs.recommended,{
}],
"prefer-const": ["error"]
},
}]);
}
]);