Last active
August 29, 2015 14:26
-
-
Save danielmatthew/66d9b937216f6bec3e36 to your computer and use it in GitHub Desktop.
Preferred CSScomb settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"remove-empty-rulesets": true, | |
"always-semicolon": true, | |
"color-case": "lower", | |
"block-indent": " ", | |
"color-shorthand": true, | |
"element-case": "lower", | |
"eof-newline": true, | |
"leading-zero": true, | |
"quotes": "double", | |
"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-after-selector-delimiter": "\n", | |
"space-before-selector-delimiter": "", | |
"space-before-closing-brace": "\n", | |
"strip-spaces": true, | |
"tab-size": true, | |
"unitless-zero": true, | |
"vendor-prefix-align": true, | |
"sort-order": [ | |
[ | |
"position", | |
"top", | |
"right", | |
"bottom", | |
"left", | |
"z-index" | |
], | |
[ | |
"display", | |
"float", | |
"width", | |
"height", | |
"max-width", | |
"max-height", | |
"min-width", | |
"min-height", | |
"padding", | |
"padding-top", | |
"padding-right", | |
"padding-bottom", | |
"padding-left", | |
"margin", | |
"margin-top", | |
"margin-right", | |
"margin-bottom", | |
"margin-left", | |
"margin-collapse", | |
"overflow", | |
"overflow-x", | |
"overflow-y", | |
"clip", | |
"clear" | |
], | |
[ | |
"font", | |
"font-family", | |
"font-size", | |
"font-smoothing", | |
"font-style", | |
"font-weight", | |
"hyphens", | |
"src", | |
"line-height", | |
"letter-spacing", | |
"word-spacing", | |
"color", | |
"text-align", | |
"text-decoration", | |
"text-indent", | |
"text-overflow", | |
"text-rendering", | |
"text-size-adjust", | |
"text-shadow", | |
"text-transform", | |
"word-break", | |
"word-wrap", | |
"white-space", | |
"vertical-align", | |
"list-style", | |
"list-style-type", | |
"list-style-position", | |
"list-style-image", | |
"pointer-events", | |
"cursor" | |
], | |
[ | |
"background", | |
"background-attachment", | |
"background-color", | |
"background-image", | |
"background-position", | |
"background-repeat", | |
"background-size", | |
"border", | |
"border-collapse", | |
"border-top", | |
"border-right", | |
"border-bottom", | |
"border-left", | |
"border-color", | |
"border-image", | |
"border-width", | |
"border-radius", | |
"content", | |
"quotes", | |
"outline", | |
"outline-offset", | |
"opacity", | |
"filter", | |
"visibility", | |
"size", | |
"zoom", | |
"transform" | |
], | |
[ | |
"box-align", | |
"box-flex", | |
"table-layout", | |
"animation", | |
"animation-delay", | |
"transition", | |
"background-clip", | |
"backface-visibility" | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment