14 lines
276 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import globals from "globals";
import pluginJs from "@eslint/js";
/** @type {import('eslint').Linter.Config[]} */
export default [
{languageOptions: { globals: globals.browser }},
pluginJs.configs.recommended,
{
rules: {
"no-unused-vars": "warn"
}
}
];