rspec/rules/S100/scala/rule.adoc
2020-06-30 10:16:44 +02:00

19 lines
248 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
With default provided regular expression:
----
def DoSomething( ) : Unit = { // Noncompliant
// ...
}
----
== Compliant Solution
----
def doSomething( ) : Unit = {
// ...
}
----