Files
home/eslint.config.mts

15 lines
363 B
TypeScript
Raw Normal View History

2025-10-08 10:35:48 +02:00
import js from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";
import { defineConfig } from "eslint/config";
export default defineConfig([
2025-10-10 16:43:21 +02:00
{
files: ["**/*.{js,mjs,cjs,ts,mts,cts}"],
plugins: { js },
extends: ["js/recommended"],
languageOptions: { globals: globals.browser },
},
tseslint.configs.recommended,
2025-10-08 10:35:48 +02:00
]);