2020-06-30 12:47:33 +02:00
|
|
|
include::../description.adoc[]
|
|
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
|
2021-01-29 09:19:51 +01:00
|
|
|
With default provided regular expression: ^([A-Z0-9_]{empty}*|[a-z0-9_]*)$
|
2020-06-30 12:47:33 +02:00
|
|
|
|
|
|
|
----
|
|
|
|
function DoSomething(){...}
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
|
|
|
----
|
|
|
|
function doSomething(){...}
|
|
|
|
----
|