ci: revert revive settings back to fix lint

The upstream revive repo changed the default settings for this linter.
We use this through golangci-lint.

This change meant lots of errors appearing all at once. We should
probably fix these in due course, but for the time being this disables
those settings.

See: https://github.com/mgechev/revive/pull/799
This commit is contained in:
Nick Craig-Wood 2023-03-20 14:17:18 +00:00
parent 5f07113a4b
commit 75dfdbf211
1 changed files with 14 additions and 0 deletions

View File

@ -28,3 +28,17 @@ issues:
run:
# timeout for analysis, e.g. 30s, 5m, default is 1m
timeout: 10m
linters-settings:
revive:
rules:
- name: unreachable-code
disabled: true
- name: unused-parameter
disabled: true
- name: empty-block
disabled: true
- name: redefines-builtin-id
disabled: true
- name: superfluous-else
disabled: true