Open
Description
Many modules are missing Notes.
$ rubocop --only Lint/ModuleEnforceNotes modules/exploits/
[...]
2306 files inspected, 1937 offenses detected
This causes rubocop to fail, which causes these modules to be non-compliant with msftidy, whenever these modules are updated.
As a stopgap, using empty arrays makes rubocop happy.
'Notes' => {
'Reliability' => [],
'Stability' => [],
'SideEffects' => []
}
There are over 1,900 modules missing Notes
. Good luck.