Fix linter errors

This commit is contained in:
Daniel 2022-07-08 22:32:53 +02:00
parent 55378bda85
commit 8ad0eabf82
3 changed files with 1 additions and 4 deletions

View file

@ -2,7 +2,6 @@ package jess
import ( import (
"github.com/safing/jess/tools" "github.com/safing/jess/tools"
// Import all tools. // Import all tools.
_ "github.com/safing/jess/tools/all" _ "github.com/safing/jess/tools/all"
) )

View file

@ -1,6 +1,4 @@
// Package all imports all tool subpackages // Package all imports all tool subpackages
//
//nolint:gci
package all package all
import ( import (

View file

@ -3,7 +3,7 @@ package gostdlib
import ( import (
"errors" "errors"
"golang.org/x/crypto/poly1305" //nolint:staticcheck,gci "golang.org/x/crypto/poly1305" //nolint:staticcheck // TODO: replace with newer package
"github.com/safing/jess/tools" "github.com/safing/jess/tools"
) )