2023-10-17 09:45:51 +02:00
|
|
|
:identifier_capital_plural: Functions and block parameters
|
|
|
|
:identifier: function and block parameter
|
|
|
|
:identifier_plural: functions and block parameters
|
|
|
|
:identifier_or: function or block parameter
|
|
|
|
:regex: ^(@{0,2}[\da-z_]+[!?=]?)|([*+-/%=!><~]+)|(\[]=?)$
|
2023-05-03 11:06:20 +02:00
|
|
|
|
2023-10-17 09:45:51 +02:00
|
|
|
include::../rule.adoc[]
|
|
|
|
|
|
|
|
=== Code examples
|
|
|
|
|
|
|
|
==== Noncompliant code example
|
|
|
|
|
|
|
|
With the default regular expression ``{regex}``:
|
|
|
|
|
|
|
|
[source,ruby,diff-id=1,diff-type=noncompliant]
|
|
|
|
----
|
|
|
|
def show_something(text_Param) # Noncompliant
|
|
|
|
localVar = "" # Noncompliant
|
|
|
|
puts text_Param + localVar
|
|
|
|
end
|
|
|
|
----
|
|
|
|
|
|
|
|
==== Compliant solution
|
|
|
|
|
|
|
|
[source,ruby,diff-id=1,diff-type=compliant]
|
|
|
|
----
|
|
|
|
def show_something(text_param)
|
|
|
|
local_var = ""
|
|
|
|
puts text_param + local_var
|
|
|
|
end
|
|
|
|
----
|
|
|
|
|
|
|
|
== Resources
|
|
|
|
|
|
|
|
=== Documentation
|
|
|
|
|
|
|
|
* Wikipedia - https://en.wikipedia.org/wiki/Naming_convention_(programming)[Naming Convention (programming)]
|
|
|
|
|
|
|
|
=== Related rules
|
|
|
|
|
|
|
|
* S100 - Method names should comply with a naming convention
|
|
|
|
* S101 - Class names should comply with a naming convention
|
2021-06-02 20:44:38 +02:00
|
|
|
|
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[]
|