Skip to content

Commit 6e19131

Browse files
committed
feat: add config path placeholder
1 parent a2a26ae commit 6e19131

File tree

7 files changed

+32
-17
lines changed

7 files changed

+32
-17
lines changed

.golangci.next.reference.yml

+3
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ linters:
335335
# List of file globs that will match this list of settings to compare against.
336336
# By default, if a path is relative, it is relative to the directory where the golangci-lint command is executed.
337337
# The placeholder '${base-path}' is substituted with a path relative to the mode defined with `run.relative-path-mode`.
338+
# The placeholder '${config-path}' is substituted with a path relative to the configuration file.
338339
# Default: $all
339340
files:
340341
- "!**/*_a _file.go"
@@ -1161,6 +1162,7 @@ linters:
11611162
# Comma-separated list of file paths containing ruleguard rules.
11621163
# By default, if a path is relative, it is relative to the directory where the golangci-lint command is executed.
11631164
# The placeholder '${base-path}' is substituted with a path relative to the mode defined with `run.relative-path-mode`.
1165+
# The placeholder '${config-path}' is substituted with a path relative to the configuration file.
11641166
# Glob patterns such as 'rules-*.go' may be specified.
11651167
# Default: ""
11661168
rules: '${base-path}/ruleguard/rules-*.go,${base-path}/myrule1.go'
@@ -1256,6 +1258,7 @@ linters:
12561258
# Useful if you need to load the template from a specific file.
12571259
# By default, if a path is relative, it is relative to the directory where the golangci-lint command is executed.
12581260
# The placeholder '${base-path}' is substituted with a path relative to the mode defined with `run.relative-path-mode`.
1261+
# The placeholder '${config-path}' is substituted with a path relative to the configuration file.
12591262
# Default: ""
12601263
template-path: /path/to/my/template.tmpl
12611264

pkg/config/placeholders.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package config
2+
3+
import "strings"
4+
5+
const (
6+
// placeholderBasePath used inside linters to evaluate relative paths.
7+
placeholderBasePath = "${base-path}"
8+
9+
// placeholderConfigPath used inside linters to paths relative to configuration.
10+
placeholderConfigPath = "${config-path}"
11+
)
12+
13+
func NewPlaceholderReplacer(cfg *Config) *strings.Replacer {
14+
return strings.NewReplacer(
15+
placeholderBasePath, cfg.GetBasePath(),
16+
placeholderConfigPath, cfg.GetConfigDir(),
17+
)
18+
}

pkg/golinters/depguard/depguard.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,17 @@ import (
88

99
"github.com/golangci/golangci-lint/v2/pkg/config"
1010
"github.com/golangci/golangci-lint/v2/pkg/goanalysis"
11-
"github.com/golangci/golangci-lint/v2/pkg/golinters/internal"
1211
"github.com/golangci/golangci-lint/v2/pkg/lint/linter"
1312
)
1413

15-
func New(settings *config.DepGuardSettings, basePath string) *goanalysis.Linter {
14+
func New(settings *config.DepGuardSettings, replacer *strings.Replacer) *goanalysis.Linter {
1615
conf := depguard.LinterSettings{}
1716

1817
if settings != nil {
1918
for s, rule := range settings.Rules {
2019
var extendedPatterns []string
2120
for _, file := range rule.Files {
22-
extendedPatterns = append(extendedPatterns, strings.ReplaceAll(file, internal.PlaceholderBasePath, basePath))
21+
extendedPatterns = append(extendedPatterns, replacer.Replace(file))
2322
}
2423

2524
list := &depguard.List{

pkg/golinters/gocritic/gocritic.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import (
1919

2020
"github.com/golangci/golangci-lint/v2/pkg/config"
2121
"github.com/golangci/golangci-lint/v2/pkg/goanalysis"
22-
"github.com/golangci/golangci-lint/v2/pkg/golinters/internal"
2322
"github.com/golangci/golangci-lint/v2/pkg/lint/linter"
2423
"github.com/golangci/golangci-lint/v2/pkg/logutils"
2524
)
@@ -31,7 +30,7 @@ var (
3130
isDebug = logutils.HaveDebugTag(logutils.DebugKeyGoCritic)
3231
)
3332

34-
func New(settings *config.GoCriticSettings) *goanalysis.Linter {
33+
func New(settings *config.GoCriticSettings, replacer *strings.Replacer) *goanalysis.Linter {
3534
wrapper := &goCriticWrapper{
3635
sizes: types.SizesFor("gc", runtime.GOARCH),
3736
}
@@ -58,9 +57,7 @@ Dynamic rules are written declaratively with AST patterns, filters, report messa
5857
nil,
5958
).
6059
WithContextSetter(func(context *linter.Context) {
61-
wrapper.replacer = strings.NewReplacer(
62-
internal.PlaceholderBasePath, context.Cfg.GetBasePath(),
63-
)
60+
wrapper.replacer = replacer
6461

6562
wrapper.init(context.Log, settings)
6663
}).

pkg/golinters/goheader/goheader.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,17 @@ import (
99

1010
"github.com/golangci/golangci-lint/v2/pkg/config"
1111
"github.com/golangci/golangci-lint/v2/pkg/goanalysis"
12-
"github.com/golangci/golangci-lint/v2/pkg/golinters/internal"
1312
)
1413

1514
const linterName = "goheader"
1615

17-
func New(settings *config.GoHeaderSettings, basePath string) *goanalysis.Linter {
16+
func New(settings *config.GoHeaderSettings, replacer *strings.Replacer) *goanalysis.Linter {
1817
conf := &goheader.Configuration{}
1918
if settings != nil {
2019
conf = &goheader.Configuration{
2120
Values: settings.Values,
2221
Template: settings.Template,
23-
TemplatePath: strings.ReplaceAll(settings.TemplatePath, internal.PlaceholderBasePath, basePath),
22+
TemplatePath: replacer.Replace(settings.TemplatePath),
2423
}
2524
}
2625

pkg/golinters/internal/commons.go

-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,3 @@ import "github.com/golangci/golangci-lint/v2/pkg/logutils"
44

55
// LinterLogger must be use only when the context logger is not available.
66
var LinterLogger = logutils.NewStderrLog(logutils.DebugKeyLinter)
7-
8-
// PlaceholderBasePath used inside linters to evaluate relative paths.
9-
const PlaceholderBasePath = "${base-path}"

pkg/lint/lintersdb/builder_linter.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
129129
return nil, nil
130130
}
131131

132+
placeholderReplacer := config.NewPlaceholderReplacer(cfg)
133+
132134
// The linters are sorted in the alphabetical order (case-insensitive).
133135
// When a new linter is added the version in `WithSince(...)` must be the next minor version of golangci-lint.
134136
return []*linter.Config{
@@ -180,7 +182,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
180182
WithSince("v1.44.0").
181183
WithURL("https://gitlab.com/bosi/decorder"),
182184

183-
linter.NewConfig(depguard.New(&cfg.Linters.Settings.Depguard, cfg.GetBasePath())).
185+
linter.NewConfig(depguard.New(&cfg.Linters.Settings.Depguard, placeholderReplacer)).
184186
WithSince("v1.4.0").
185187
WithURL("https://github.com/OpenPeeDeeP/depguard"),
186188

@@ -300,7 +302,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
300302
WithSince("v1.0.0").
301303
WithURL("https://github.com/jgautheron/goconst"),
302304

303-
linter.NewConfig(gocritic.New(&cfg.Linters.Settings.Gocritic)).
305+
linter.NewConfig(gocritic.New(&cfg.Linters.Settings.Gocritic, placeholderReplacer)).
304306
WithSince("v1.12.0").
305307
WithLoadForGoAnalysis().
306308
WithAutoFix().
@@ -340,7 +342,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
340342
WithAutoFix().
341343
WithURL("https://github.com/segmentio/golines"),
342344

343-
linter.NewConfig(goheader.New(&cfg.Linters.Settings.Goheader, cfg.GetBasePath())).
345+
linter.NewConfig(goheader.New(&cfg.Linters.Settings.Goheader, placeholderReplacer)).
344346
WithSince("v1.28.0").
345347
WithAutoFix().
346348
WithURL("https://github.com/denis-tingaikin/go-header"),

0 commit comments

Comments
 (0)