lint: reenable revive unused-parameter check

Signed-off-by: Matt Souza <medsouz99@gmail.com>
This commit is contained in:
Matt Souza
2025-09-28 19:29:42 -04:00
parent 3747e3db3f
commit 090304a054
263 changed files with 723 additions and 724 deletions

View File

@@ -4,7 +4,7 @@ type basicMachine struct {
args []string
}
func (s *basicMachine) buildCmd(m *machineTestBuilder) []string {
func (s *basicMachine) buildCmd(_ *machineTestBuilder) []string {
cmd := []string{"-r"}
if len(s.args) > 0 {
cmd = append(cmd, s.args...)