packages_speech_bubble/eslint.config.mjs
xlarp bb18ffc49b
Some checks failed
CI / build (16.x) (push) Has been cancelled
CI / build (18.x) (push) Has been cancelled
CI / build (20.x) (push) Has been cancelled
init
2025-01-25 07:08:20 +02:00

10 lines
No EOL
265 B
JavaScript

import globals from "globals";
import tseslint from "typescript-eslint";
/** @type {import('eslint').Linter.Config[]} */
export default [
{files: ["**/*.{js,mjs,cjs,ts}"]},
{languageOptions: { globals: globals.browser }},
...tseslint.configs.recommended,
];