ci: disable revive:dot-imports

The `revive:dot-imports` rule complains about the same problems that
`golint` reports. We only need one `//nolint:golint // ...` comment, not
a second one for revive.

Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
Niels de Vos 2023-06-02 12:00:20 +02:00 committed by mergify[bot]
parent 4a6c27274f
commit 0c962d6739

View File

@ -158,6 +158,11 @@ linters-settings:
max-blank-identifiers: 3 max-blank-identifiers: 3
nestif: nestif:
min-complexity: 7 min-complexity: 7
revive:
rules:
# dot-imports is already checked by golint
- name: dot-imports
disabled: true
linters: linters:
enable-all: true enable-all: true