From dc95291634ce354c09b3b6a0b85a93209f86437b Mon Sep 17 00:00:00 2001 From: Steven Benner Date: Sun, 25 Sep 2016 20:35:50 -0700 Subject: [PATCH] Added 'order-alphabetical' to CSSLint ignore override The latest version of CSSLint provided by grunt-contrib-csslint has this warning enabled by default. It probably isn't worth enforcing this one in the project by default. For now. --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3aeefa21..d738b617 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -196,7 +196,8 @@ module.exports = function(grunt) { themes: { src: [ 'css/*.css' ], options: { - ids: false + ids: false, + 'order-alphabetical': false } } },