@@ -129,6 +129,8 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
129
129
return nil , nil
130
130
}
131
131
132
+ placeholderReplacer := config .NewPlaceholderReplacer (cfg )
133
+
132
134
// The linters are sorted in the alphabetical order (case-insensitive).
133
135
// When a new linter is added the version in `WithSince(...)` must be the next minor version of golangci-lint.
134
136
return []* linter.Config {
@@ -180,7 +182,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
180
182
WithSince ("v1.44.0" ).
181
183
WithURL ("https://gitlab.com/bosi/decorder" ),
182
184
183
- linter .NewConfig (depguard .New (& cfg .Linters .Settings .Depguard , cfg . GetBasePath () )).
185
+ linter .NewConfig (depguard .New (& cfg .Linters .Settings .Depguard , placeholderReplacer )).
184
186
WithSince ("v1.4.0" ).
185
187
WithURL ("https://github.com/OpenPeeDeeP/depguard" ),
186
188
@@ -300,7 +302,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
300
302
WithSince ("v1.0.0" ).
301
303
WithURL ("https://github.com/jgautheron/goconst" ),
302
304
303
- linter .NewConfig (gocritic .New (& cfg .Linters .Settings .Gocritic )).
305
+ linter .NewConfig (gocritic .New (& cfg .Linters .Settings .Gocritic , placeholderReplacer )).
304
306
WithSince ("v1.12.0" ).
305
307
WithLoadForGoAnalysis ().
306
308
WithAutoFix ().
@@ -340,7 +342,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
340
342
WithAutoFix ().
341
343
WithURL ("https://github.com/segmentio/golines" ),
342
344
343
- linter .NewConfig (goheader .New (& cfg .Linters .Settings .Goheader , cfg . GetBasePath () )).
345
+ linter .NewConfig (goheader .New (& cfg .Linters .Settings .Goheader , placeholderReplacer )).
344
346
WithSince ("v1.28.0" ).
345
347
WithAutoFix ().
346
348
WithURL ("https://github.com/denis-tingaikin/go-header" ),
0 commit comments