add csscomb in package,

add generic
This commit is contained in:
Stephen
2014-09-30 11:10:17 -04:00
parent 426edf5456
commit 02940c2dd3
6 changed files with 27 additions and 1 deletions

24
project-x/.csscomb.json Normal file
View File

@@ -0,0 +1,24 @@
{
"remove-empty-rulesets": true,
"always-semicolon": true,
"color-case": "upper",
"block-indent": "\t",
"color-shorthand": false,
"element-case": "lower",
"eof-newline": true,
"leading-zero": true,
"quotes": "double",
"sort-order-fallback": "abc",
"space-before-colon": "",
"space-after-colon": " ",
"space-before-combinator": " ",
"space-after-combinator": " ",
"space-between-declarations": "\n",
"space-before-opening-brace": " ",
"space-after-opening-brace": "\n",
"space-before-selector-delimiter": "",
"space-before-closing-brace": "\n",
"strip-spaces": true,
"unitless-zero": true,
"vendor-prefix-align": true
}

View File

@@ -26,6 +26,7 @@ module.exports = function(grunt) {
}
}
},
autoprefixer: {
build: {
options: {

View File

@@ -16,6 +16,7 @@
"grunt-autoprefixer": "1.0.1",
"grunt-contrib-concat": "0.5.0",
"grunt-contrib-uglify": "0.6.0",
"grunt-contrib-imagemin": "0.8.1"
"grunt-contrib-imagemin": "0.8.1",
"grunt-csscomb": "3.0.0"
}
}