Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 282 Bytes

no-trailing-zero.md

File metadata and controls

25 lines (18 loc) · 282 Bytes

No Trailing Zero

Rule no-trailing-zero will enforce that trailing zeros are not allowed.

Examples

When enabled, the following are disallowed:

.foo {
  margin: 1.500rem;
}

.foo {
  margin: .500rem;
}

.foo {
  margin: 0.2500rem;
}

.foo {
  margin: 4.0rem;
}