2021-02-23 20:41:11 +01:00
|
|
|
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]
|
2021-02-23 20:41:11 +01:00
|
|
|
----
|
|
|
|
function DoSomething(){...} // Noncompliant
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source, javascript]
|
2021-02-23 20:41:11 +01:00
|
|
|
----
|
|
|
|
function doSomething(){...}
|
|
|
|
----
|