From 1231b7b14eefceccb79f646a64dc932351b2a38f Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Tue, 7 Nov 2023 08:55:19 -0500 Subject: [PATCH] fix: lint --- .golangci.yml | 3 +-- level.go | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 08340b6..8d9f5fe 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -23,7 +23,6 @@ linters: - goimports - goprintffuncname - gosec - - ifshort - misspell - nolintlint - prealloc @@ -32,4 +31,4 @@ linters: - sqlclosecheck - unconvert - unparam - - whitespace \ No newline at end of file + - whitespace diff --git a/level.go b/level.go index 516a5a4..cba2297 100644 --- a/level.go +++ b/level.go @@ -1,9 +1,9 @@ package log import ( - "math" "errors" "fmt" + "math" "strings" )