mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-03-21 17:54:44 -05:00
21 lines
360 B
JavaScript
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: {},
|
|
}]);
|