Build: add box-sizing: false to .csslintrc

We can use this now that we dont support IE < 8
This commit is contained in:
Alexander Schmitz 2014-11-07 23:32:35 -05:00
parent 7f3bb4dc4f
commit 6e70f94aa0

View File

@ -1,11 +1,13 @@
{ {
"adjoining-classes": false, "adjoining-classes": false,
"box-model": false, "box-model": false,
"box-sizing": false,
"compatible-vendor-prefixes": false, "compatible-vendor-prefixes": false,
"duplicate-background-images": false, "duplicate-background-images": false,
"import": false, "import": false,
"important": false, "important": false,
"outline-none": false, "outline-none": false,
"overqualified-elements": false, "overqualified-elements": false,
"text-indent": false "text-indent": false,
"box-sizing": false
} }