Todos in SCSS

You can write todos to yourself in your scss by adding this line where you need to remind yourself of something:

@warn "Add breakpoint here";

This way you get a nice warning each time you compile, listing out all your warnings. You could also use @debug instead of @warn. The difference is basically that you can turn warnings off with the --quiet command-line option or the :quiet Sass option, and that the warnings look a bit different:

How warnings and debug-notifications look in CodeKit
This is how warnings and debug-notifications look in CodeKit


RSS