diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2014-11-07 23:32:35 -0500 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-10-07 10:47:43 -0400 |
commit | 6e70f94aa09a86ac9be888791c3d895e3eb20931 (patch) | |
tree | d3dbd557930a6f67937ed995a722e427bef9175c /.csslintrc | |
parent | 7f3bb4dc4f78178f91642efa48bafd383105dab3 (diff) | |
download | jquery-ui-6e70f94aa09a86ac9be888791c3d895e3eb20931.tar.gz jquery-ui-6e70f94aa09a86ac9be888791c3d895e3eb20931.zip |
Build: add box-sizing: false to .csslintrc
We can use this now that we dont support IE < 8
Diffstat (limited to '.csslintrc')
-rw-r--r-- | .csslintrc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.csslintrc b/.csslintrc index 5d9db072c..2138bd580 100644 --- a/.csslintrc +++ b/.csslintrc @@ -1,11 +1,13 @@ { "adjoining-classes": false, "box-model": false, + "box-sizing": false, "compatible-vendor-prefixes": false, "duplicate-background-images": false, "import": false, "important": false, "outline-none": false, "overqualified-elements": false, - "text-indent": false + "text-indent": false, + "box-sizing": false } |