Skip to content

Commit 2084a50

Browse files
dependabot[bot]ldezCrocmagnon
authoredJan 17, 2025··
build(deps): bump github.com/Crocmagnon/fatcontext from 0.6.0 to 0.7.1 (#5335)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info>
1 parent 6f13537 commit 2084a50

9 files changed

+67
-7
lines changed
 

‎.golangci.next.reference.yml

+6
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,12 @@ linters-settings:
548548
exclude:
549549
- '.+/cobra\.Command$'
550550

551+
fatcontext:
552+
# Check for potential fat contexts in struct pointers.
553+
# May generate false positives.
554+
# Default: false
555+
check-struct-pointers: true
556+
551557
forbidigo:
552558
# Forbid the following identifiers (list of regexp).
553559
# Default: ["^(fmt\\.Print(|f|ln)|print|println)$"]

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/Antonboom/nilnil v1.0.1
1212
github.com/Antonboom/testifylint v1.5.2
1313
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c
14-
github.com/Crocmagnon/fatcontext v0.6.0
14+
github.com/Crocmagnon/fatcontext v0.7.1
1515
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24
1616
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.0
1717
github.com/OpenPeeDeeP/depguard/v2 v2.2.0

‎go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎jsonschema/golangci.next.jsonschema.json

+11
Original file line numberDiff line numberDiff line change
@@ -1019,6 +1019,17 @@
10191019
}
10201020
}
10211021
},
1022+
"fatcontext": {
1023+
"type": "object",
1024+
"additionalProperties": false,
1025+
"properties": {
1026+
"check-struct-pointers": {
1027+
"description": "Check for potential fat contexts in struct pointers.",
1028+
"type": "boolean",
1029+
"default": false
1030+
}
1031+
}
1032+
},
10221033
"forbidigo": {
10231034
"type": "object",
10241035
"additionalProperties": false,

‎pkg/config/linters_settings.go

+5
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ type LintersSettings struct {
223223
ErrorLint ErrorLintSettings
224224
Exhaustive ExhaustiveSettings
225225
Exhaustruct ExhaustructSettings
226+
Fatcontext FatcontextSettings
226227
Forbidigo ForbidigoSettings
227228
Funlen FunlenSettings
228229
Gci GciSettings
@@ -430,6 +431,10 @@ type ExhaustructSettings struct {
430431
Exclude []string `mapstructure:"exclude"`
431432
}
432433

434+
type FatcontextSettings struct {
435+
CheckStructPointers bool `mapstructure:"check-struct-pointers"`
436+
}
437+
433438
type ForbidigoSettings struct {
434439
Forbid []ForbidigoPattern `mapstructure:"forbid"`
435440
ExcludeGodocExamples bool `mapstructure:"exclude-godoc-examples"`

‎pkg/golinters/fatcontext/fatcontext.go

+12-3
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,25 @@ import (
44
"github.com/Crocmagnon/fatcontext/pkg/analyzer"
55
"golang.org/x/tools/go/analysis"
66

7+
"github.com/golangci/golangci-lint/pkg/config"
78
"github.com/golangci/golangci-lint/pkg/goanalysis"
89
)
910

10-
func New() *goanalysis.Linter {
11-
a := analyzer.Analyzer
11+
func New(settings *config.FatcontextSettings) *goanalysis.Linter {
12+
a := analyzer.NewAnalyzer()
13+
14+
cfg := map[string]map[string]any{}
15+
16+
if settings != nil {
17+
cfg[a.Name] = map[string]any{
18+
analyzer.FlagCheckStructPointers: settings.CheckStructPointers,
19+
}
20+
}
1221

1322
return goanalysis.NewLinter(
1423
a.Name,
1524
a.Doc,
1625
[]*analysis.Analyzer{a},
17-
nil,
26+
cfg,
1827
).WithLoadMode(goanalysis.LoadModeTypesInfo)
1928
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//golangcitest:args -Efatcontext
2+
//golangcitest:config_path testdata/fatcontext_structpointer.yml
3+
package testdata
4+
5+
import (
6+
"context"
7+
)
8+
9+
type Container struct {
10+
Ctx context.Context
11+
}
12+
13+
func something() func(*Container) {
14+
return func(r *Container) {
15+
ctx := r.Ctx
16+
ctx = context.WithValue(ctx, "key", "val")
17+
r.Ctx = ctx // want "potential nested context in struct pointer"
18+
}
19+
}
20+
21+
func blah(r *Container) {
22+
ctx := r.Ctx
23+
ctx = context.WithValue(ctx, "key", "val")
24+
r.Ctx = ctx // want "potential nested context in struct pointer"
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
linters-settings:
2+
fatcontext:
3+
check-struct-pointers: true
4+

‎pkg/lint/lintersdb/builder_linter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
307307
WithPresets(linter.PresetStyle).
308308
WithURL("https://github.com/gostaticanalysis/forcetypeassert"),
309309

310-
linter.NewConfig(fatcontext.New()).
310+
linter.NewConfig(fatcontext.New(&cfg.LintersSettings.Fatcontext)).
311311
WithSince("v1.58.0").
312312
WithPresets(linter.PresetPerformance).
313313
WithLoadForGoAnalysis().

0 commit comments

Comments
 (0)
Please sign in to comment.