Skip to content

Latest commit

 

History

History

R007

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

R007

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

Flagged Code

d.Partial(true),

Passing Code

// Not present :)

Ignoring Reports

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

//lintignore:R007
d.Partial(true),