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" )