From 5f37ebc4c662aa901b0242e912687193418ac7f9 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Mon, 8 Sep 2014 15:11:43 +0100 Subject: [PATCH] Issue #2222049 by LewisNyman, Michael Hodge Jr, sqndr: Add a .csslintrc file that's in line with our CSS standards. --- .csslintrc | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .csslintrc diff --git a/.csslintrc b/.csslintrc new file mode 100644 index 000000000000..1133ef2a9ddc --- /dev/null +++ b/.csslintrc @@ -0,0 +1,37 @@ +{ + "important": true, + "adjoining-classes": false, + "known-properties": true, + "box-sizing": false, + "box-model": true, + "overqualified-elements": true, + "display-property-grouping": true, + "bulletproof-font-face": false, + "compatible-vendor-prefixes": false, + "regex-selectors": false, + "errors": false, + "duplicate-background-images": true, + "duplicate-properties": true, + "empty-rules": true, + "selector-max-approaching": false, + "gradients": false, + "fallback-colors": false, + "font-sizes": false, + "font-faces": false, + "floats": false, + "star-property-hack": true, + "outline-none": true, + "import": true, + "ids": true, + "underscore-property-hack": true, + "rules-count": false, + "qualified-headings": true, + "selector-max": false, + "shorthand": true, + "text-indent": true, + "unique-headings": true, + "universal-selector": false, + "unqualified-attributes": true, + "vendor-prefix": true, + "zero-units": true +} -- GitLab