Files
DeviceManager/node_modules/stylelint/lib/rules/no-extra-semicolons/README.md

81 lines
1.1 KiB
Markdown

# 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.
<!-- prettier-ignore -->
```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:
<!-- prettier-ignore -->
```css
@import "x.css";;
```
<!-- prettier-ignore -->
```css
@import "x.css";
;
```
<!-- prettier-ignore -->
```css
a {
color: pink;;
}
```
<!-- prettier-ignore -->
```css
a {
;color: pink;
}
```
<!-- prettier-ignore -->
```css
a {
color: pink;
;
}
```
<!-- prettier-ignore -->
```css
a {
color: red;
}
;
b {
color: white;
}
```
The following patterns are _not_ considered problems:
<!-- prettier-ignore -->
```css
@import "x.css";
```
<!-- prettier-ignore -->
```css
a {
color: pink;
}
```