From 16698cad01010763b8e5ffc4ab2b0ff9bd92c222 Mon Sep 17 00:00:00 2001 From: Douglas Thor Date: Thu, 26 Dec 2024 22:09:24 +0000 Subject: [PATCH] fix(gazelle): Don't ignore 'setup.py' files when running Gazelle. Fixes #2108 --- gazelle/pythonconfig/pythonconfig.go | 1 - 1 file changed, 1 deletion(-) diff --git a/gazelle/pythonconfig/pythonconfig.go b/gazelle/pythonconfig/pythonconfig.go index 55121381dd..fde0a98da2 100644 --- a/gazelle/pythonconfig/pythonconfig.go +++ b/gazelle/pythonconfig/pythonconfig.go @@ -126,7 +126,6 @@ const ( // defaultIgnoreFiles is the list of default values used in the // python_ignore_files option. var defaultIgnoreFiles = map[string]struct{}{ - "setup.py": {}, } // Configs is an extension of map[string]*Config. It provides finding methods