rspec/rules/S3261/rule.adoc
2020-06-30 17:16:12 +02:00

14 lines
167 B
Plaintext

Namespaces with no lines of code clutter a project and should be removed.
== Noncompliant Code Example
----
namespace MyEmptyNamespace // Noncompliant
{
}
----