Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add uncalled linter #3348

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .golangci.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1746,6 +1746,37 @@ linters-settings:
# Default: true
begin: false

uncalled:
# Disables all rules.
# Default: false
disabled-all: true
# Disables the given rules.
# Default: []
disabled:
- context-cancel
# Enables specific rules, in combination with disable all.
# Default: []
enabled:
- sql-rows-err
# Add or override default rules.
# Default: []
rules:
# Check for missing context CancelFunc() calls.
- name: context-cancel
category: context
packages:
- context
methods: []
results:
- type: .Context
pointer: false
- type: .CancelFunc
pointer: false
expect:
call:
args: []


usestdlibvars:
# Suggest the use of http.MethodXX.
# Default: true
Expand Down Expand Up @@ -2052,6 +2083,7 @@ linters:
- thelper
- tparallel
- typecheck
- uncalled
- unconvert
- unparam
- unused
Expand Down Expand Up @@ -2159,6 +2191,7 @@ linters:
- thelper
- tparallel
- typecheck
- uncalled
- unconvert
- unparam
- unused
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ require (
github.com/spf13/viper v1.12.0
github.com/ssgreg/nlreturn/v2 v2.2.1
github.com/stbenjam/no-sprintf-host-port v0.1.1
github.com/stevenh/go-uncalled v0.8.1
github.com/stretchr/testify v1.8.1
github.com/tdakkota/asciicheck v0.1.1
github.com/tetafro/godot v1.4.11
Expand Down Expand Up @@ -162,6 +163,7 @@ require (
github.com/quasilyte/gogrep v0.0.0-20220828223005-86e4605de09f // indirect
github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95 // indirect
github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect
github.com/rs/zerolog v1.28.0 // indirect
github.com/sivchari/nosnakecase v1.7.0
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
Expand Down
11 changes: 11 additions & 0 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions pkg/config/linters_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"runtime"

"github.com/pkg/errors"
"github.com/stevenh/go-uncalled/pkg/uncalled"
)

var defaultLintersSettings = LintersSettings{
Expand Down Expand Up @@ -108,6 +109,12 @@ var defaultLintersSettings = LintersSettings{
SkipRegexp: `(export|internal)_test\.go`,
AllowPackages: []string{"main"},
},
Uncalled: UncalledSettings{
DisableAll: false,
Enabled: nil,
Disabled: nil,
Rules: nil,
},
Unparam: UnparamSettings{
Algo: "cha",
},
Expand Down Expand Up @@ -198,6 +205,7 @@ type LintersSettings struct {
Tenv TenvSettings
Testpackage TestpackageSettings
Thelper ThelperSettings
Uncalled UncalledSettings
Unparam UnparamSettings
Unused StaticCheckSettings
UseStdlibVars UseStdlibVarsSettings
Expand Down Expand Up @@ -667,6 +675,8 @@ type UseStdlibVarsSettings struct {
SyslogPriority bool `mapstructure:"syslog-priority"`
}

type UncalledSettings = uncalled.Config

type UnparamSettings struct {
CheckExported bool `mapstructure:"check-exported"`
Algo string
Expand Down
19 changes: 19 additions & 0 deletions pkg/golinters/uncalled.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package golinters

import (
"github.com/stevenh/go-uncalled/pkg/uncalled"
"golang.org/x/tools/go/analysis"

"github.com/golangci/golangci-lint/pkg/config"
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
)

func NewUncalled(settings *config.UncalledSettings) *goanalysis.Linter {
a := uncalled.NewAnalyzer(uncalled.ConfigOpt(settings))
return goanalysis.NewLinter(
a.Name,
a.Doc,
[]*analysis.Analyzer{a},
nil,
).WithLoadMode(goanalysis.LoadModeTypesInfo)
}
8 changes: 8 additions & 0 deletions pkg/lint/lintersdb/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
tenvCfg *config.TenvSettings
testpackageCfg *config.TestpackageSettings
thelperCfg *config.ThelperSettings
uncalledCfg *config.UncalledSettings
unparamCfg *config.UnparamSettings
unusedCfg *config.StaticCheckSettings
usestdlibvars *config.UseStdlibVarsSettings
Expand Down Expand Up @@ -242,6 +243,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
tenvCfg = &m.cfg.LintersSettings.Tenv
testpackageCfg = &m.cfg.LintersSettings.Testpackage
thelperCfg = &m.cfg.LintersSettings.Thelper
uncalledCfg = &m.cfg.LintersSettings.Uncalled
unparamCfg = &m.cfg.LintersSettings.Unparam
unusedCfg = &m.cfg.LintersSettings.Unused
varcheckCfg = &m.cfg.LintersSettings.Varcheck
Expand Down Expand Up @@ -787,6 +789,12 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
WithPresets(linter.PresetBugs).
WithURL(""),

linter.NewConfig(golinters.NewUncalled(uncalledCfg)).
WithSince("v1.51.0").
WithLoadForGoAnalysis().
WithPresets(linter.PresetBugs, linter.PresetSQL).
WithURL("https://github.com/stevenh/go-uncalled"),

linter.NewConfig(golinters.NewUnconvert()).
WithSince("v1.0.0").
WithLoadForGoAnalysis().
Expand Down
1 change: 1 addition & 0 deletions test/linters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ func TestTypecheck(t *testing.T) {
func TestSourcesFromTestdataSubDir(t *testing.T) {
subDirs := []string{
"loggercheck",
"uncalled",
}

for _, dir := range subDirs {
Expand Down
17 changes: 17 additions & 0 deletions test/testdata/uncalled/uncalled.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//golangcitest:args -Euncalled
package testdata

import (
"database/sql"
)

func RowsErrNotChecked(db *sql.DB) {
rows, err := db.Query("select id from tb") // want "rows.Err\\(\\) must be called"
if err != nil {
// Handle error.
}

for rows.Next() {
// Handle row.
}
}