Skip to content

Latest commit

 

History

History

R008

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

R008

This terraform-plugin-sdk (v1) analyzer has been removed in tfproviderlint v0.30.0.

The R008 analyzer reports usage of the deprecated (helper/schema.ResourceData).SetPartial() function that does not need replacement.

Flagged Code

d.SetPartial("example"),

Passing Code

// Not present :)

Ignoring Reports

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

//lintignore:R008
d.SetPartial("example"),