From 454106a22b7f1f1fa8eb021f207465c92a4ce366 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 12 Jun 2013 10:07:04 -0700 Subject: [PATCH] Disable several CSS Lint rules --- Gruntfile.coffee | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 5675c50e7..5c36d1270 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -121,12 +121,19 @@ module.exports = (grunt) -> csslint: options: 'adjoining-classes': false + 'box-model': false 'box-sizing': false 'bulletproof-font-face': false 'compatible-vendor-prefixes': false 'fallback-colors': false 'gradients': false + 'ids': false 'important': false + 'known-properties': false + 'overqualified-elements': false + 'qualified-headings': false + 'unique-headings': false + 'universal-selector': false 'vendor-prefix': false src: [ 'src/**/*.css',