@@ -16,22 +16,22 @@ const EnvTestRun = "GL_TEST_RUN"
16
16
const envDebug = "GL_DEBUG"
17
17
18
18
const (
19
- DebugKeyBinSalt = "bin_salt"
20
- DebugKeyConfigReader = "config_reader"
21
- DebugKeyEmpty = ""
22
- DebugKeyEnabledLinters = "enabled_linters"
23
- DebugKeyExec = "exec"
24
- DebugKeyFormatter = "formatter"
25
- DebugKeyGoEnv = "goenv "
26
- DebugKeyLinter = "linter "
27
- DebugKeyLintersContext = "linters_context"
28
- DebugKeyLintersDB = "lintersdb"
29
- DebugKeyLintersOutput = "linters_output"
30
- DebugKeyLoader = "loader" // Debugs packages loading (including `go/packages` internal debugging).
31
- DebugKeyPkgCache = "pkgcache"
32
- DebugKeyRunner = "runner"
33
- DebugKeyStopwatch = "stopwatch"
34
- DebugKeyTest = "test"
19
+ DebugKeyBinSalt = "bin_salt"
20
+ DebugKeyConfigReader = "config_reader"
21
+ DebugKeyEmpty = ""
22
+ DebugKeyEnabledLinters = "enabled_linters"
23
+ DebugKeyExec = "exec"
24
+ DebugKeyFormatter = "formatter"
25
+ DebugKeyFormattersOutput = "formatters_output "
26
+ DebugKeyGoEnv = "goenv "
27
+ DebugKeyLintersContext = "linters_context"
28
+ DebugKeyLintersDB = "lintersdb"
29
+ DebugKeyLintersOutput = "linters_output"
30
+ DebugKeyLoader = "loader" // Debugs packages loading (including `go/packages` internal debugging).
31
+ DebugKeyPkgCache = "pkgcache"
32
+ DebugKeyRunner = "runner"
33
+ DebugKeyStopwatch = "stopwatch"
34
+ DebugKeyTest = "test"
35
35
)
36
36
37
37
// Printers.
@@ -81,7 +81,8 @@ const (
81
81
DebugKeyForbidigo = "forbidigo" // Debugs `forbidigo` linter.
82
82
DebugKeyGoCritic = "gocritic" // Debugs `gocritic` linter.
83
83
DebugKeyGovet = "govet" // Debugs `govet` linter.
84
- DebugKeyRevive = "revive" // Debugs `revive` linter.
84
+ DebugKeyLinter = "linter"
85
+ DebugKeyRevive = "revive" // Debugs `revive` linter.
85
86
)
86
87
87
88
func getEnabledDebugs () map [string ]bool {
0 commit comments