From 0a55b1de90fa9ac12c29e443fb9e607c020180c9 Mon Sep 17 00:00:00 2001 From: Blair Currey <12960453+BlairCurrey@users.noreply.github.com> Date: Tue, 2 Apr 2024 13:06:59 -0400 Subject: [PATCH] refactor: attempt to effectively remove ignored path from config --- renovate.json | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/renovate.json b/renovate.json index e83320bb02..c353f51a21 100644 --- a/renovate.json +++ b/renovate.json @@ -2,7 +2,6 @@ "enabled": true, "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:base"], - "ignorePresets": [":ignorePaths"], "prConcurrentLimit": 10, "branchConcurrentLimit": 0, "branchPrefix": "renovate-", @@ -20,13 +19,5 @@ "allowedVersions": "<17.0.0" } ], - "ignorePaths": [ - "**/node_modules/**", - "**/bower_components/**", - "**/vendor/**", - "**/examples/**", - "**/__tests__/**", - "**/tests/**", - "**/__fixtures__/**" - ] + "ignorePaths": ["!test/**"] }