UNPKG

canonical

Version:

Canonical code style linter and formatter for JavaScript, SCSS, CSS and JSON.

22 lines (15 loc) 254 B
# No Trailing Zero Rule `no-trailing-zero` will enforce that trailing zeros are not allowed. ## Examples When enabled, the following are disallowed: ```scss .foo { margin: 1.500rem; } .foo { margin: .500rem; } .foo { margin: 0.2500rem; } ```