linter-bundle
Version:
Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.
41 lines (29 loc) • 685 B
Markdown
# number-no-trailing-zeros
Disallow trailing zeros in numbers.
<!-- prettier-ignore -->
```css
a { top: 0.5000px; bottom: 1.0px; }
/** ↑ ↑
* These trailing zeros */
```
The [`fix` option](https://stylelint.io/user-guide/options/#fix) can automatically fix some of the problems reported by this rule.
## Options
### `true`
The following patterns are considered problems:
<!-- prettier-ignore -->
```css
a { top: 1.0px }
```
<!-- prettier-ignore -->
```css
a { top: 1.01000px }
```
The following patterns are _not_ considered problems:
<!-- prettier-ignore -->
```css
a { top: 1px }
```
<!-- prettier-ignore -->
```css
a { top: 1.01px }
```