summaryrefslogtreecommitdiffstats
path: root/.golangci.yml
AgeCommit message (Collapse)Author
2024-02-16Bump required go version to 1.21Stefan Haller
We'll need this to use the slices.Sort function in the next commit. It would also be possible to use sort.Ints instead, but it's slower.
2023-09-30Ignore deprecation checks in linterJesse Duffield
This is pretty funny: the staticcheck linter gets mad if we use a field which is marked in a comment as being deprecated. But it tripped on my own comment saying that a field is deprecated in terms of the user config! Obviously we have to make use of this field, otherwise we would just remove it entirely rather than mark it as deprecated, so I'm silencing this lint. I doubt this lint would actually come in handy in other cases (like when using a third party package) and worst case scenario we just end up fixing the problem when we try to upgrade the package and the deprecated field is now gone).
2023-08-02Increase timeout for linterJesse Duffield
we've had a timeout issue in CI
2023-07-30Remove secureexec packageJesse Duffield
From the go 1.19 release notes: Command and LookPath no longer allow results from a PATH search to be found relative to the current directory. This removes a common source of security problems but may also break existing programs that depend on using, say, exec.Command("prog") to run a binary named prog (or, on Windows, prog.exe) in the current directory. See the os/exec package documentation for information about how best to update such programs.
2022-03-25no more naked returnsJesse Duffield
2022-03-19update lintersJesse Duffield