rspec/rules/S1531/rule.adoc
2020-06-30 17:16:12 +02:00

18 lines
215 B
Plaintext

HTML-style comments are not part of EcmaScript specification, and should not be used.
== Noncompliant Code Example
----
<!-- Noncompliant -->
----
== Compliant Solution
----
// Compliant
/* Compliant */
----