We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbc8235 commit be21cd7Copy full SHA for be21cd7
.golangci.yml
@@ -90,6 +90,9 @@ linters:
90
# will also catch magic numbers that make sense to extract.
91
- gomnd
92
93
+ # Disable tagalign
94
+ - tagalign
95
+
96
issues:
97
# Only check issues in the new code.
98
new-from-rev: 3f48b446215c751ea4ba0c30fb04413ab9f1a7c7
config.go
@@ -45,6 +45,7 @@ var (
45
defaultLogDir = filepath.Join(defaultAppDataDir, defaultLogDirname)
46
)
47
48
+//nolint:lll
49
type config struct {
50
// General application behavior
51
ConfigFile *cfgutil.ExplicitString `short:"C" long:"configfile" description:"Path to configuration file"`
0 commit comments