R010

package
v0.29.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 13, 2023 License: MPL-2.0 Imports: 4 Imported by: 2

README

R010

The R010 analyzer reports when (helper/schema.ResourceData).GetChange() assignments are not using the first return value (assigned to _), which should be replaced with (helper/schema.ResourceData).Get() instead.

Flagged Code

_, n := d.GetChange("example")

Passing Code

n := d.Get("example")

Ignoring Reports

Singular reports can be ignored by adding the a //lintignore:R010 Go code comment at the end of the offending line or on the line immediately proceding, e.g.

//lintignore:R010
_, n := d.GetChange("example")

Documentation

Index

Constants

View Source
const Doc = `` /* 295-byte string literal not displayed */

Variables

View Source
var Analyzer = &analysis.Analyzer{
	Name: analyzerName,
	Doc:  Doc,
	Requires: []*analysis.Analyzer{
		commentignore.Analyzer,
		resourcedatagetchangeassignstmt.Analyzer,
	},
	Run: run,
}

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL