Arseniy Zaostrovnykh 7ca29f686f Force linebreaks
2021-02-02 15:02:10 +01:00

17 lines
241 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
With default provided regular expression: ^([A-Z0-9_]{empty}*|[a-z0-9_]*)$
----
function DoSomething(){...}
----
== Compliant Solution
----
function doSomething(){...}
----