We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb7c3d commit 90b515fCopy full SHA for 90b515f
pkg/plugins/golang/v4/init.go
@@ -190,6 +190,17 @@ func checkDir() error {
190
if isCapitalized && info.Name() != "PROJECT" {
191
return nil
192
}
193
+ allowedFiles := []string{
194
+ // User might use tool versions management tools to set up the environment including kubebuilder and go version
195
+ "mise.toml", // mise-en-place configuration file
196
+ ".tool-versions", // asdf configuration file
197
+ }
198
+ // Allow files used by tool versions management
199
+ for _, ext := range allowedFiles {
200
+ if info.Name() == ext {
201
+ return nil
202
203
204
disallowedExtensions := []string{
205
".go",
206
".yaml",
0 commit comments