I tried using the following directive to tell StyleCop to avoid an entire namespace:
[module: System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "*", Justification = "Reviewed. Suppression is OK here.")]
However, this does not appear to work. I have a third party plugin that generates Help documentation, and I don't care to run StyleCop on their code.
Is it even possible to suppress on a namespace level?