summaryrefslogtreecommitdiff
path: root/.csscomb.json
diff options
context:
space:
mode:
authorconnorshea <connor.james.shea@gmail.com>2016-03-11 12:33:43 -0700
committerconnorshea <connor.james.shea@gmail.com>2016-03-14 20:33:54 -0600
commit8d8b457cebdfd0790157cd54fd1f24e46fbf0785 (patch)
tree6d2dcd25e28c5347e17d36cbcaad49364f68bc9a /.csscomb.json
parent3ed8a8e52cc0df6ee085bd545dc3061f240d7826 (diff)
downloadgitlab-ce-8d8b457cebdfd0790157cd54fd1f24e46fbf0785.tar.gz
Add SCSS Lint, CSSComb config file, run SCSS Lint in GitLab CI, add documentation for SCSS Style Guide.
See !3069 for more information.
Diffstat (limited to '.csscomb.json')
-rw-r--r--.csscomb.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/.csscomb.json b/.csscomb.json
new file mode 100644
index 00000000000..e353e6a63d0
--- /dev/null
+++ b/.csscomb.json
@@ -0,0 +1,16 @@
+{
+ "always-semicolon": true,
+ "color-case": "lower",
+ "block-indent": " ",
+ "color-shorthand": true,
+ "element-case": "lower",
+ "space-before-colon": "",
+ "space-after-colon": " ",
+ "space-before-combinator": " ",
+ "space-after-combinator": " ",
+ "space-between-declarations": "\n",
+ "space-before-opening-brace": " ",
+ "space-after-opening-brace": "\n",
+ "space-before-closing-brace": "\n",
+ "unitless-zero": true
+}