diff --git a/.golangci.yml b/.golangci.yml
index fd681d17..2c8f4808 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -30,7 +30,7 @@ linters:
     - goconst
     - gocritic
     #- gocyclo
-    #- gofmt
+    - gofmt
     - goimports
     #- gomnd
     #- goprintffuncname
@@ -39,10 +39,10 @@ linters:
     - govet
     - ineffassign
     #- lll
-    #- misspell
+    - misspell
     #- nakedret
     #- noctx
-    #- nolintlint
+    - nolintlint
     #- rowserrcheck
     #- scopelint
     - staticcheck
diff --git a/command.go b/command.go
index b31e22c8..54748fc6 100644
--- a/command.go
+++ b/command.go
@@ -1460,7 +1460,6 @@ func (c *Command) UseLine() string {
 
 // DebugFlags used to determine which flags have been assigned to which commands
 // and which persist.
-// nolint:goconst
 func (c *Command) DebugFlags() {
 	c.Println("DebugFlags called on", c.Name())
 	var debugflags func(*Command)