| 123456789101112131415161718192021222324252627 | linters-settings:  staticcheck:    checks: [      "all",      "-SA1019" # There are valid use cases of strings.Title    ]  nakedret:    max-func-lines: 0 # Disallow any unnamed return statementlinters:  enable:    - deadcode    - errcheck    - gosimple    - govet    - ineffassign    - staticcheck    - structcheck    - typecheck    - unused    - varcheck    - nakedret    - gofmt    - rowserrcheck    - unconvert    - goimports    - unparam
 |