From 0d7473d07a55c1f32dd9666f8177c5dc0a024e46 Mon Sep 17 00:00:00 2001 From: Paul Slaughter <pslaughter@gitlab.com> Date: Thu, 11 Mar 2021 13:29:37 -0600 Subject: [PATCH] Replace jest specific glob with *.config.*.js - There's differnet patterns for specifying different types of a config. Let's support both. --- .eslintrc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.yml b/.eslintrc.yml index 678750c085b2..9363f05e95cc 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -93,7 +93,7 @@ overrides: - 'config/**/*' - 'scripts/**/*' - '*.config.js' - - 'jest.*.js' + - '*.config.*.js' rules: '@gitlab/require-i18n-strings': off import/no-extraneous-dependencies: off -- GitLab