Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any code beautifier formatter for Sass (scss) code? I know how to format the output css code generated by scss compiler but how to give nice auto formatting to scss code itself?

I've tried some online CSS formatter but they don't work with scss code.

If i give this to them

.list5 {  border-bottom: 1px solid #f2f2f1;  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
ul li {
    margin: 0 0 5px 25px !important;    height: auto !important;    background: none !important;    font-size: 14px;    padding: 18px 3px 5px !important;
    width: 169px !important; }
 }

they give this output

.list5 {
    border-bottom: 1px solid #f2f2f1;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    margin: 0 0 5px 25px !important;
    height: auto !important;
    background: none !important;
    font-size: 14px;
    padding: 18px 3px 5px !important;
    width: 169px !important;
}

which remove this part ul li {}

share|improve this question

5 Answers

up vote 16 down vote accepted

Here's a super simple way to clean up your SCSS.

Use the sass-convert script in your terminal to beautify or prettify your css or scss:

$ sass-convert messy.scss clean.scss

The sass-convert script is installed when you install Sass. It can convert from css, scss, sass, or less to sass or scss.

Learn more about sass-convert:

Advanced user tip: Because the sass syntax is much stricter (only allowing one property: value pair per line) you're less likely to run into an issue with messy code.

share|improve this answer
anything for windows user? Eclipse pluging ? :) – xchg.ca Apr 2 at 0:32
@xchg.ca i've created a basic Sublime Text 2 plugin that uses sass-convert github.com/badsyntax/SassBeautify – badsyntax Apr 26 at 9:24

http://hilite.me/ - supports Sass and Scss

JSFiddle will do the trick as well. Just hit the TidyUp button

share|improve this answer

I ran the code through Pretty Diff and I got this output:

.list5 {
    border-bottom:1px solid #f2f2f1;
    padding:0 0px 20px 0px;
    margin:0 0px 20px 0px;
    ul li {
        background: none !important;
        font-size: 14px;
        height: auto !important;
        margin: 0px 0px 5px 25px !important;
        padding: 18px 3px 5px !important;
        width: 169px !important;
    }
}

Is that what you are looking for? It looks strange for CSS.

share|improve this answer
Hummmm, beautification is imperfect for SCSS from Pretty Diff, but appears functional. I am working on fixing what flaws are visible from this immediate example. – austincheney Mar 29 '12 at 11:22
are you creator of Pretty Diff? – Jitendra Vyas Aug 16 '12 at 16:13

Pretty Diff will strip the "$" from your variables.

You can try: http://www.prettyprinter.de/

It's not perfect but at least it indents an extra level for nested rules and from what I've seen keeps all the scss stuff untouched (.ie does not strip it out).

Regards

share|improve this answer

Somehow I got here when searching for "LESS" code formatter so I thought I would share what works for LESS in case others ended up here searching for the same thing:

http://css2less.cc/

I input my CSS code (even css code that was generated from less) and it outputs beautiful LESS code. Also it's on Github. Two thumbs up.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.