18 lines
287 B
Plaintext
Raw Normal View History

include::../description.adoc[]
== Noncompliant Code Example
With the default regular expression ``++^[a-z][a-zA-Z0-9]*$++``:
2022-02-04 17:28:24 +01:00
[source, javascript]
----
function DoSomething(){...} // Noncompliant
----
== Compliant Solution
2022-02-04 17:28:24 +01:00
[source, javascript]
----
function doSomething(){...}
----