S015

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

README

S015

The S015 analyzer reports cases of schemas which the attribute name includes characters outside lowercase alphanumerics and underscores, which will fail provider schema validation.

Flagged Code

map[string]*schema.Schema{
    "INVALID": {
        Required: true,
        Type:     schema.TypeString,
    },
}

map[string]*schema.Schema{
    "invalid!": {
        Required: true,
        Type:     schema.TypeString,
    },
}

map[string]*schema.Schema{
    "invalid-name": {
        Required: true,
        Type:     schema.TypeString,
    },
}

Passing Code

map[string]*schema.Schema{
    "valid": {
        Required: true,
        Type:     schema.TypeString,
    },
}

map[string]*schema.Schema{
    "valid_name": {
        Required: true,
        Type:     schema.TypeString,
    },
}

Ignoring Reports

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

//lintignore:S015
map[string]*schema.Schema{
    "INVALID": {
        Required: true,
        Type:     schema.TypeString,
    },
}

Documentation

Overview

Package S015 defines an Analyzer that checks for Schema that attribute names contain only lowercase alphanumerics and underscores

Index

Constants

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

Variables

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