Skip to content

Commit

Permalink
fix .golangci
Browse files Browse the repository at this point in the history
  • Loading branch information
symonk committed Jul 22, 2024
1 parent 1ac9ebc commit 49755ed
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/analyser/modes.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ func sequentialFunc(loadedFile LoadedFile) []string {

// reverseFunc traverses the file from the tail end backwards
// this is useful for finding later matches quicker.
//
//nolint:golint, unused
func reverseFunc(loadedFile LoadedFile) []string {
return nil
}
Expand All @@ -59,6 +61,8 @@ func reverseFunc(loadedFile LoadedFile) []string {
// into chunks and spawns multiple goroutines responsible for
// a smaller subset of the file and joins all matches back
// together.
//
//nolint:golint, unused
func fanOutFunc(loadedFile LoadedFile) []string {
return nil
}

0 comments on commit 49755ed

Please sign in to comment.