Bump eslint

This commit is contained in:
Will Toohey
2025-12-08 11:31:36 +10:00
parent 24a47f039f
commit 5a6bd01342
3 changed files with 23 additions and 11 deletions
+20
View File
@@ -0,0 +1,20 @@
import { defineConfig } from "eslint/config";
import html from "eslint-plugin-html";
import globals from "globals";
export default defineConfig([{
plugins: {
html,
},
languageOptions: {
globals: {
...globals.browser,
},
ecmaVersion: "latest",
sourceType: "module",
},
rules: {},
}]);