From 67f9219504cd276d07a7dd2bad1e19918766287c Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Fri, 12 Apr 2024 11:07:52 +0200 Subject: [PATCH] fix(CI): Set ESLINT_USE_FLAT_CONFIG=false In ESLint v9 the flat config is default, but we can change the default back to the old one. See: https://github.com/eslint/eslint/issues/18287 (cherry picked from commit 2d5296f177465d05affd2fec29376c6e9cdb20de) --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9fee099d201..46d5a15b8e1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -241,6 +241,7 @@ jobs: - image: cimg/ruby:3.2-node environment: BUNDLE_ONLY: "lint" + ESLINT_USE_FLAT_CONFIG: false steps: - checkout - run: 'bundle install'