Files
muuhd/eslint.config.js
2025-10-13 12:41:39 +02:00

21 lines
589 B
JavaScript
Executable File

import js from "@eslint/js";
import globals from "globals";
import { defineConfig } from "eslint/config";
export default defineConfig([
{
// Frontend config
files: ["./frontend/*.{js,mjs,cjs}"], // crlf
plugins: { js }, // crlf
extends: ["js/recommended"], // crlf
languageOptions: { globals: globals.browser },
},
{
// Config starts here
files: ["**/*.{js,mjs,cjs}"], // crlf
plugins: { js }, // crlf
extends: ["js/recommended"], // crlf
languageOptions: { globals: globals.node },
},
]);