gruntjs / grunt-contrib-sass

Compile Sass to CSS.
http://gruntjs.com/
MIT License
848 stars 141 forks source link

Option to use tabs instead of spaces #206

Closed cowgill closed 9 years ago

cowgill commented 9 years ago

When outputting the expanded css, this would be very nice to have.

Current output (two spaces)

body {
  margin: 0;
}

Desired output (one tab)

body {
    margin: 0;
}
sindresorhus commented 9 years ago

Nah. Can easily be achieved with a separate task, and other than you, I doubt anyone would need this as most compile Sass=>CSS for production.