Pierre Gimalac
Pierre Gimalac
### What does this PR do? Fix the `logs_config` prefix in diagnose package, which was missing a trailing `.`. ### Motivation It was resulting in warnings about unknown configs, and...
Testify assertions can be called with a non-string value for `msgAndArgs` argument if there is a single such argument, as can be seen [in the code](https://github.com/stretchr/testify/blob/b074924938f86d417f1c9a845c7e8b0784d7f937/assert/assertions.go#L295) it will be rendered...
Fixes https://github.com/Antonboom/testifylint/issues/170. I tested manually that this fixes the issue on the example provided in the issue. I wasn't able to add a test as it would require a whole...
Here is a minimal reproducible example where the formatter rule should suggest not using `fmt.Sprintf`, but doesn't. ```go package main import ( "fmt" "testing" "github.com/stretchr/testify/require" ) func TestA(t *testing.T) {...
Looking at the README, it seems `exclude` only supports listing functions explicitly, while the deprecated `ignore` supported regexes (and `ignorepkg` whole packages). What is the alternative ? It it on...
Add the following fields to the `ProcStat` type and read them from `/proc//stat` in `Proc.Stat()`: - StartCode - EndCode - StartStack See fields 26, 27, and 28 in https://man7.org/linux/man-pages/man5/proc_pid_stat.5.html. It...
### Welcome - [X] Yes, I understand that the GitHub action repository is not the repository of golangci-lint itself. - [X] Yes, I've searched similar issues on GitHub and didn't...
### What does this PR do? Fixes a flake in the `TestNixFSTypeFiltering` test. The test uses randomly generated strings to generate test cases, and it failed due to a random...
### What does this PR do? Fix the forwarder health check so that it reports as unhealthy when the API is invalid. Fix the unhealthy test of the health subcommand...
### What does this PR do? Same as https://github.com/DataDog/datadog-agent/pull/29363. ### Motivation ### Additional Notes ### Possible Drawbacks / Trade-offs ### Describe how to test/QA your changes