grunt-prettysass icon indicating copy to clipboard operation
grunt-prettysass copied to clipboard

Grunt plugin for beautifying SASS source files.

Results 11 grunt-prettysass issues
Sort by recently updated
recently updated
newest added

This plugin is great, but it inserts two newlines before every inline comment. Is there an option to keep the inline comments inline? If not, this would be a nice...

The `prettysass` task fails: ``` Running "prettysass:app" (prettysass) task prettifying: ./sass >> ./sass: Error: Command failed: /bin/sh: sass-convert: command not found Warning: Task "prettysass:app" failed. Use --force to continue. ```...

Running this task never seems to finish. ``` prettysass: { options: { alphabetize: true }, app: { src: ['styles/core/_error.scss'] }, }, ```

Since grunt uses the command `sass-convert` which comes with the ruby version of Sass, it makes sense to mention that in the `README.md` file, because otherwise, people who are using...

This is a really great Module! But I found a problem with includes: ``` sass %placeholder { @include breakpoint(xs) { width: $value1; } width: $value2; flex-shrink: 0; } ``` outputs...

Update peerDependencies to support Grunt 1.0 Hello, This is an automated issue request to update the `peerDependencies` for your Grunt plugin. We ask you to merge this and **publish a...

An example of a mixin that takes 'null' as an argument from bourbon https://github.com/thoughtbot/bourbon/commit/49c93793285d409b488b0303dc8a8d23a16296bb ``` scss // Before prettysass .toolbar { @include position(absolute, 0px 0px null 0px); } // After...

First of all, great module! I have a problem when I activate alphabetization with scss files which are structured like that: ``` scss #page { position: relative; .next, .prev {...