66 lines
1.2 KiB
Plaintext
Raw Normal View History

== Why is this an issue?
2021-01-27 13:42:22 +01:00
Extra semicolons (``++;++``) are usually introduced by mistake, for example because:
2020-06-30 12:47:33 +02:00
* It was meant to be replaced by an actual statement, but this was forgotten.
2021-01-27 13:42:22 +01:00
* There was a typo which lead the semicolon to be doubled, i.e. ``++;;++``.
2020-06-30 12:47:33 +02:00
* There was a misunderstanding about where semicolons are required or useful.
=== Noncompliant code example
2020-06-30 12:47:33 +02:00
2022-02-04 17:28:24 +01:00
[source,javascript]
2020-06-30 12:47:33 +02:00
----
var x = 1;; // Noncompliant
function foo() {
}; // Noncompliant
----
=== Compliant solution
2020-06-30 12:47:33 +02:00
2022-02-04 17:28:24 +01:00
[source,javascript]
2020-06-30 12:47:33 +02:00
----
var x = 1;
function foo() {
}
----
=== Exceptions
This rule does not apply when the semicolon is after a line break and before ``++(++`` or ``++[++`` as it is often used in semicolon-less style.
[source,javascript]
----
var hello = 'Hello'
var world = 'World!'
var helloWorld = hello + ' ' + world
;[...helloWorld].forEach(c => console.log(c))
----
[source,javascript]
----
var a = 1
var b = 2 * a
;(a + b).toString()
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Remove this extra semicolon.
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]