Grunt: Disable csslint's vendor-prefix rule, we're including only the prefixes that are still necessary in supported browsers

This commit is contained in:
Jörn Zaefferer 2012-10-23 11:54:32 -04:00
parent 5e0a2ca1e5
commit b1b07e8046

View File

@ -306,7 +306,8 @@ grunt.initConfig({
"important": false, "important": false,
"outline-none": false, "outline-none": false,
// especially this one // especially this one
"overqualified-elements": false "overqualified-elements": false,
"compatible-vendor-prefixes": false
} }
} }
}, },