omitNumberLeadingZero

Control whether omit leading zero before dot of numbers or not.

Default option is false.

Example for false

Playground

a {
  width: 0.1px;
}

Example for true

Playground

a {
  width: .1px;
}