R013

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: 7 Imported by: 2

README

R013

The R013 analyzer reports cases of resource names which do not include at least one underscore character (_). Resources should be named with the provider name and API resource name separated by an underscore to clarify where a resource is declared and configured.

Flagged Code

map[string]*schema.Resource{
    "thing": /* ... */,
}

Passing Code

map[string]*schema.Resource{
    "example_thing": /* ... */,
}

Ignoring Reports

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

//lintignore:R013
map[string]*schema.Resource{
    "thing": /* ... */,
}

Documentation

Index

Constants

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

Variables

View Source
var Analyzer = &analysis.Analyzer{
	Name: analyzerName,
	Doc:  Doc,
	Requires: []*analysis.Analyzer{
		commentignore.Analyzer,
		resourcemapcompositelit.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