diff --git a/eslint.config.mjs.bkup b/eslint.config.mjs.bkup deleted file mode 100644 index 395b539..0000000 --- a/eslint.config.mjs.bkup +++ /dev/null @@ -1,26 +0,0 @@ -import globals from 'globals' -import pluginJs from '@eslint/js' -import tseslint from 'typescript-eslint' -import astroSwGlobals from '@ayco/astro-sw/globals' - -/** @type {import('eslint').Linter.Config[]} */ -export default [ - { files: ['**/*.{js,mjs,cjs,ts}'] }, - { - languageOptions: { - globals: { ...globals.browser, ...globals.node, ...astroSwGlobals }, - }, - }, - pluginJs.configs.recommended, - ...tseslint.configs.recommended, - { - ignores: [ - 'dist/*', - '.output/*', - '.astro/*', - '**/node_modules/*', - '**/coverage/*', - '**/env.d.ts', - ], - }, -]