|
|
%!s(int64=2) %!d(string=hai) anos | |
|---|---|---|
| .. | ||
| README.md | %!s(int64=2) %!d(string=hai) anos | |
| index.js | %!s(int64=2) %!d(string=hai) anos | |
Disallow extra semicolons.
a { color: pink;; }
/** ↑
* This semicolons */
This rule ignores semicolons after Less mixins.
The fix option can automatically fix all of the problems reported by this rule.
trueThe following patterns are considered violations:
@import "x.css";;
@import "x.css";
;
a {
color: pink;;
}
a {
;color: pink;
}
a {
color: pink;
;
}
a {
color: red;
}
;
b {
color: white;
}
The following patterns are not considered violations:
@import "x.css";
a {
color: pink;
}