# no-extra-semicolons > **Warning** This rule is deprecated and will be removed in the future. See [the migration guide](../../../docs/migration-guide/to-15.md). Disallow extra semicolons. ```css a { color: pink;; } /** ↑ * This semicolons */ ``` This rule ignores semicolons after Less mixins. The [`fix` option](../../../docs/user-guide/options.md#fix) can automatically fix all of the problems reported by this rule. ## Options ### `true` The following patterns are considered problems: ```css @import "x.css";; ``` ```css @import "x.css"; ; ``` ```css a { color: pink;; } ``` ```css a { ;color: pink; } ``` ```css a { color: pink; ; } ``` ```css a { color: red; } ; b { color: white; } ``` The following patterns are _not_ considered problems: ```css @import "x.css"; ``` ```css a { color: pink; } ```