UNPKG

@zeix/ui-element

Version:

UIElement - minimal reactive framework based on Web Components

17 lines (16 loc) 478 B
import globals from "globals"; import pluginJs from "@eslint/js"; import tseslint from "typescript-eslint"; /** @type {import('eslint').Linter.Config[]} */ export default [ { files: ["**/*.{js,mjs,cjs,ts}"], }, {languageOptions: { globals: globals.browser }}, pluginJs.configs.recommended, ...tseslint.configs.recommended, {rules: { // we know what we're doing ;-) "@typescript-eslint/no-empty-object-type": "off", "@typescript-eslint/no-explicit-any": "off" }} ];