rspec/rules/S4668/css/rule.adoc
Fred Tingaud 16f6c0aecf
Inline adoc when include has no additional value (#1940)
Inline adoc files when they are included exactly once.

Also fix language tags because this inlining gives us better information
on what language the code is written in.
2023-05-25 14:18:12 +02:00

49 lines
922 B
Plaintext

== Why is this an issue?
The W3C specifications say comments should be defined using ``++/* ... */++``. The use of ``++//++`` is not supported on all browsers and can lead to unexpected results.
=== Noncompliant code example
[source,css]
----
// some comment
a { color: pink; }
----
=== Compliant solution
[source,css]
----
/* some comment */
a { color: pink; }
----
=== Exceptions
This rule ignores single line comments in ``++less++`` and ``++scss++`` files.
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Replace this // by a valid comment: /* ... */
'''
== Comments And Links
(visible only on this page)
=== on 7 Jun 2018, 09:20:01 Ann Campbell wrote:
\[~alexandre.gigleux] the current title reads to me like it's about comment content, not formatting. I suggest: Comment formatting should be valid
endif::env-github,rspecator-view[]