rspec/rules/S3261/rule.adoc

17 lines
208 B
Plaintext
Raw Normal View History

== Why is this an issue?
2020-06-30 12:48:39 +02:00
Namespaces with no lines of code clutter a project and should be removed.
=== Noncompliant code example
2020-06-30 12:48:39 +02:00
2022-02-04 17:28:24 +01:00
[source,text]
2020-06-30 12:48:39 +02:00
----
namespace MyEmptyNamespace // Noncompliant
{
}
----