From cbd09d478fca11f175814cb7c50c307842d8f9e9 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Thu, 26 Dec 2024 00:16:36 +0100 Subject: [PATCH] chore: remove bkup file --- eslint.config.mjs.bkup | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 eslint.config.mjs.bkup 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', - ], - }, -]