From d6c799078cbcfe0c9aa275ee0f455c891001c9f7 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sun, 22 Feb 2026 02:21:24 +0100 Subject: [PATCH] chore: fix lint and exclude config files --- backstop.config.cjs | 1 + eslint.config.mjs | 1 + 2 files changed, 2 insertions(+) diff --git a/backstop.config.cjs b/backstop.config.cjs index d5988997..0b458647 100644 --- a/backstop.config.cjs +++ b/backstop.config.cjs @@ -1,3 +1,4 @@ +/* global process, module */ const BASE_URL = process.env.TEST_URL || 'http://localhost:3000'; const REFERENCE_URL = process.env.REFERENCE_URL || 'https://klz-cables.com'; diff --git a/eslint.config.mjs b/eslint.config.mjs index ed4272bf..9bd59e89 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -18,6 +18,7 @@ export default [ "**/.git/**", "*.js", "*.mjs", + "*.cjs", "scripts/**", "tests/**", "next-env.d.ts",