BemaniPatcher/eslint.config.mjs
Will Toohey 5a6bd01342
Some checks failed
Check HTML/JS is valid / build (push) Has been cancelled
Bump eslint
2025-12-08 11:31:36 +10:00

21 lines
360 B
JavaScript

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: {},
}]);