Missing Module Annotation

Indicates that a hidden VB attribute is present for a module, but no Rubberduck annotation is documenting it.

Reasoning

Rubberduck annotations mean to document the presence of hidden VB attributes; this inspection flags modules that do not have a Rubberduck annotation corresponding to the hidden VB attribute.

Default severity

Warning

Inspection type

CodeQualityIssues

Examples

This example should trigger a result

MyModule (PredeclaredClass)
Attribute VB_PredeclaredId = True Option Explicit ' ...

This example should NOT trigger a result

MyModule (PredeclaredClass)
Attribute VB_PredeclaredId = True '@PredeclaredId Option Explicit ' ...

Rubberduck.CodeAnalysis.Inspections.Concrete.MissingModuleAnnotationInspection.cs (Prerelease-v2.5.9.6289)