ThisIsManta / stylus-supremacy

A Node.js script that helps formatting Stylus files.
https://thisismanta.github.io/stylus-supremacy
MIT License
88 stars 9 forks source link

Preserve explicit line breaks #65

Open malte-v opened 4 years ago

malte-v commented 4 years ago

Could you add a way to stop the formatter from turning this..

  grid-template: "header"      40px \
                 "main-router" 1fr  \
                 "footer"      30px \
                / 1fr               \

...into this:

  grid-template: "header" 40px "main-router" 1fr "footer" 30px / 1fr

Thanks!

cyberbiont commented 4 years ago

In my case it just deletes everything if I dont' write it in one line with property name

grid-template-areas: 
                "header header"\ 
        "sidebar breadcrumbs"\
        "sidebar content"\
        "footer footer"