Cleaning house on various linting and dev configuration messiness

This commit is contained in:
2026-05-30 14:54:04 -07:00
parent 5a740c8d4d
commit 23868fc873
6 changed files with 227 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
import js from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";
import { defineConfig } from "eslint/config";
export default defineConfig([
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: globals.browser } },
tseslint.configs.recommended,
]);