Prettier 1.12.1
Playground link
# Options (if any):
--print-width 80
--tab-width 2
Input (line 2 is 81 chars):
.SearchBox {
box-shadow: 0 1rem 6rem rgba(0, 0, 0, 0.18), 0 0.3rem 1rem rgba(0, 0, 0, 0.17);
}
Output (line 2 is still 81 chars long):
.SearchBox {
box-shadow: 0 1rem 6rem rgba(0, 0, 0, 0.18), 0 0.3rem 1rem rgba(0, 0, 0, 0.17);
}
Expected behavior:
.SearchBox {
box-shadow: 0 1rem 6rem rgba(0, 0, 0, 0.18),
0 0.3rem 1rem rgba(0, 0, 0, 0.17);
}
Prettier 1.12.1
Playground link
# Options (if any): --print-width 80 --tab-width 2Input (line 2 is 81 chars):
Output (line 2 is still 81 chars long):
Expected behavior: