2023-10-17 09:45:51 +02:00
|
|
|
:identifier_capital_plural: Local variables and function parameters
|
|
|
|
:identifier: local variable and function parameter
|
|
|
|
:identifier_plural: local variables and function parameters
|
|
|
|
:identifier_or: local variable or function parameter
|
|
|
|
:regex: ^[_a-zA-Z][a-zA-Z0-9]*$
|
|
|
|
|
2020-06-30 10:16:44 +02:00
|
|
|
include::../rule.adoc[]
|
2021-06-02 20:44:38 +02:00
|
|
|
|
2023-10-17 09:45:51 +02:00
|
|
|
=== Code examples
|
|
|
|
|
|
|
|
==== Noncompliant code example
|
|
|
|
|
|
|
|
With the default regular expression ``{regex}``:
|
|
|
|
|
|
|
|
[source,scala,diff-id=1,diff-type=noncompliant]
|
|
|
|
----
|
|
|
|
def printSomething(text_param: String): Unit = { // Noncompliant
|
|
|
|
var _1LOCAL = "" // Noncompliant
|
|
|
|
println(text_param + _1LOCAL)
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
==== Compliant solution
|
|
|
|
|
|
|
|
[source,scala,diff-id=1,diff-type=compliant]
|
|
|
|
----
|
|
|
|
|
|
|
|
def printSomething(textParam: String): Unit = {
|
|
|
|
var LOCAL = ""
|
|
|
|
println(textParam + LOCAL)
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
== Resources
|
|
|
|
|
|
|
|
=== Documentation
|
|
|
|
|
|
|
|
* Scala documentation - https://docs.scala-lang.org/style/naming-conventions.html[Style guide: naming conventions]
|
|
|
|
* Wikipedia - https://en.wikipedia.org/wiki/Naming_convention_(programming)[Naming Convention (programming)]
|
|
|
|
|
|
|
|
=== Related rules
|
|
|
|
|
|
|
|
* S100 - Function names should comply with a naming convention
|
|
|
|
* S101 - Class names should comply with a naming convention
|
|
|
|
|
2021-06-03 09:05:38 +02:00
|
|
|
ifdef::env-github,rspecator-view[]
|
2021-09-20 15:38:42 +02:00
|
|
|
|
|
|
|
'''
|
|
|
|
== Implementation Specification
|
|
|
|
(visible only on this page)
|
|
|
|
|
|
|
|
include::../message.adoc[]
|
|
|
|
|
|
|
|
include::../parameters.adoc[]
|
|
|
|
|
2021-06-08 15:52:13 +02:00
|
|
|
'''
|
2021-06-02 20:44:38 +02:00
|
|
|
== Comments And Links
|
|
|
|
(visible only on this page)
|
|
|
|
|
|
|
|
include::../comments-and-links.adoc[]
|
2023-06-22 10:38:01 +02:00
|
|
|
|
2021-06-03 09:05:38 +02:00
|
|
|
endif::env-github,rspecator-view[]
|