You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discovered in #438 it seems that the no-trailing-zero rule only works correctly when there is at least one non zero number following a decimal point.
The following is currently valid.
foo {
margin: 1.0000000000
}
The following is not
foo {
margin: 1.10000000000
}
The text was updated successfully, but these errors were encountered:
As discovered in #438 it seems that the
no-trailing-zero
rule only works correctly when there is at least one non zero number following a decimal point.The following is currently valid.
The following is not
The text was updated successfully, but these errors were encountered: