Open
Description
I'm using Sass to compile my CSS, and also use a CSS framework (like Bootstrap, Foundation or Inuit.css).
When I'm using CssLint with Grunt on my final CSS, it gives me some errors / recommandations on the CSS code from the Framework.
Because I don't want to modify these frameworks / libraries, it should be good to add special comments to define certain regions CssLint will ignore.
e.g.:
/*# cssLintIgnoreArea=begin */
@import "../bower_components/bourbon/_bourbon.scss";
@import "../bower_components/inuit.css/_inuit.scss";
/*# cssLintIgnoreArea=end */
@import "_my-custom-code.scss";
With this I will be able to use efficiently CssLint on all my Sass projects.