mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 00:43:04 +00:00
1.1 KiB
1.1 KiB
no-extra-semicolons
Warning
This rule is deprecated and will be removed in the future. See the migration guide.
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.
Options
true
The following patterns are considered problems:
@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 problems:
@import "x.css";
a {
color: pink;
}