1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 05:40:11 +01:00

silence revive linter warnings

that we cannot or do not want to fix yet
This commit is contained in:
Bernhard Reiter 2025-10-23 16:09:18 +02:00
parent b6281012f5
commit cf9c62fcc0
No known key found for this signature in database
GPG key ID: 2B7BA3BF9BC3A554
7 changed files with 29 additions and 23 deletions

View file

@ -6,7 +6,7 @@
// SPDX-FileCopyrightText: 2022 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
// Software-Engineering: 2022 Intevation GmbH <https://intevation.de>
package util
package util //revive:disable-line:var-naming
import (
"context"

View file

@ -6,7 +6,7 @@
// SPDX-FileCopyrightText: 2022 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
// Software-Engineering: 2022 Intevation GmbH <https://intevation.de>
package util
package util //revive:disable-line:var-naming
import (
"bufio"

View file

@ -6,7 +6,7 @@
// SPDX-FileCopyrightText: 2022 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
// Software-Engineering: 2022 Intevation GmbH <https://intevation.de>
package util
package util //revive:disable-line:var-naming
import (
"bytes"

View file

@ -6,7 +6,7 @@
// SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
// Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
package util
package util //revive:disable-line:var-naming
// Set is a simple set type.
type Set[K comparable] map[K]struct{}

View file

@ -6,7 +6,8 @@
// SPDX-FileCopyrightText: 2022 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
// Software-Engineering: 2022 Intevation GmbH <https://intevation.de>
package util
package util //revive:disable-line:var-naming
import (
"net/url"