all repos — x @ 3d0242f0d90d494f52bd8a5f32df35dd0fcfed2d

Experiments and stuff

update golangci configuration

Alan Pearce
commit

3d0242f0d90d494f52bd8a5f32df35dd0fcfed2d

parent

3240773ed6892db2916dec8c17e34ee35b42e0b1

1 file changed, 28 insertions(+), 1 deletion(-)

changed files
M .golangci.yaml.golangci.yaml
@@ -1,8 +1,8 @@
--- # yamllint disable-line rule:line-length # yaml-language-server: $schema=https://golangci-lint.run/jsonschema/golangci.jsonschema.json +version: "2" linters: - fast: false enable: - gocritic - godox
@@ -19,3 +19,30 @@ - reassign
- revive - sloglint - unconvert + - wrapcheck + settings: + paralleltest: + ignore-missing: true + wrapcheck: + ignore-sigs: + - fault.New( + - fault.Newf( + - fault.Wrap( + exclusions: + generated: lax + presets: + - comments + - common-false-positives + - legacy + - std-error-handling + paths: + - third_party$ + - builtin$ + - examples$ +formatters: + exclusions: + generated: lax + paths: + - third_party$ + - builtin$ + - examples$