Rui Azevedo
Rui Azevedo
The report command uses [filepath.Glob](https://pkg.go.dev/path/filepath#Glob) to get all filepaths given a glob pattern. There's a chance it does not support the `/**/` pattern, I'll take a look
The builtin glob does not support the globstar `/**/`. If we want that functionality we need to implement it or use a third-party library. This library allows us to use...
### Checking for errors on the Ruby `mistakes` repository For Java and Go we check for compilation errors with: - Go: `go build` - Java: `mvn compile` Since Ruby is...