S001

SchemasStandard

check for Schema of TypeList or TypeSet missing Elem

The S001 analyzer reports cases of TypeList or TypeSet schemas missing Elem, which will fail schema validation.

Examples

&schema.Schema{
    Type: schema.TypeList,
}

&schema.Schema{
    Type: schema.TypeSet,
}
&schema.Schema{
    Type: schema.TypeList,
    Elem: &schema.Schema{Type: schema.TypeString},
}

&schema.Schema{
    Type: schema.TypeSet,
    Elem: &schema.Schema{Type: schema.TypeString},
}

Ignoring reports

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

//lintignore:S001
&schema.Schema{
    Type: schema.TypeList,
}

This page is generated from passes/S001/README.md, which lives beside the analyzer.