Move csslint overrides in Gruntfile.js.

This works around https://github.com/gruntjs/grunt-contrib-csslint/issues/26
This commit is contained in:
XhmikosR 2014-02-27 11:21:52 +02:00
parent ef49635ae2
commit a7339a0f4c
2 changed files with 7 additions and 5 deletions

View File

@ -89,9 +89,13 @@ module.exports = function (grunt) {
examples: [
'docs/examples/**/*.css'
],
docs: [
'docs/assets/css/docs.css'
]
docs: {
options: {
'ids': false,
'overqualified-elements': false
},
src: ['docs/assets/css/docs.css']
}
},
concat: {

View File

@ -1,5 +1,3 @@
/*csslint ids: false, overqualified-elements: false, fallback-colors: false*/
/*!
* Bootstrap Docs (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.