.csscomb.json 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. {
  2. "exclude": ["node_modules/**"],
  3. "remove-empty-rulesets": true,
  4. "always-semicolon": true,
  5. "color-case": "lower",
  6. "block-indent": " ",
  7. "color-shorthand": true,
  8. "element-case": "lower",
  9. "eof-newline": true,
  10. "leading-zero": true,
  11. "quotes": "double",
  12. "space-before-colon": "",
  13. "space-after-colon": " ",
  14. "space-before-combinator": " ",
  15. "space-after-combinator": " ",
  16. "space-between-declarations": "\n",
  17. "space-before-opening-brace": " ",
  18. "space-after-opening-brace": "\n",
  19. "space-after-selector-delimiter": "\n",
  20. "space-before-selector-delimiter": "",
  21. "space-before-closing-brace": "\n",
  22. "strip-spaces": true,
  23. "tab-size": true,
  24. "unitless-zero": true,
  25. "vendor-prefix-align": true,
  26. "sort-order": [
  27. [
  28. "font",
  29. "font-family",
  30. "font-size",
  31. "font-weight",
  32. "font-style",
  33. "font-variant",
  34. "font-size-adjust",
  35. "font-stretch",
  36. "font-effect",
  37. "font-emphasize",
  38. "font-emphasize-position",
  39. "font-emphasize-style",
  40. "font-smooth",
  41. "line-height"
  42. ],
  43. [
  44. "position",
  45. "z-index",
  46. "top",
  47. "right",
  48. "bottom",
  49. "left"
  50. ],
  51. [
  52. "display",
  53. "visibility",
  54. "float",
  55. "clear",
  56. "overflow",
  57. "overflow-x",
  58. "overflow-y",
  59. "-ms-overflow-x",
  60. "-ms-overflow-y",
  61. "clip",
  62. "zoom",
  63. "flex-direction",
  64. "flex-order",
  65. "flex-pack",
  66. "flex-align"
  67. ],
  68. [
  69. "-webkit-box-sizing",
  70. "-moz-box-sizing",
  71. "box-sizing",
  72. "width",
  73. "min-width",
  74. "max-width",
  75. "height",
  76. "min-height",
  77. "max-height",
  78. "margin",
  79. "margin-top",
  80. "margin-right",
  81. "margin-bottom",
  82. "margin-left",
  83. "padding",
  84. "padding-top",
  85. "padding-right",
  86. "padding-bottom",
  87. "padding-left"
  88. ],
  89. [
  90. "table-layout",
  91. "empty-cells",
  92. "caption-side",
  93. "border-spacing",
  94. "border-collapse",
  95. "list-style",
  96. "list-style-position",
  97. "list-style-type",
  98. "list-style-image"
  99. ],
  100. [
  101. "content",
  102. "quotes",
  103. "counter-reset",
  104. "counter-increment",
  105. "resize",
  106. "cursor",
  107. "-webkit-user-select",
  108. "-moz-user-select",
  109. "-ms-user-select",
  110. "user-select",
  111. "nav-index",
  112. "nav-up",
  113. "nav-right",
  114. "nav-down",
  115. "nav-left",
  116. "-webkit-transition",
  117. "-moz-transition",
  118. "-ms-transition",
  119. "-o-transition",
  120. "transition",
  121. "-webkit-transition-delay",
  122. "-moz-transition-delay",
  123. "-ms-transition-delay",
  124. "-o-transition-delay",
  125. "transition-delay",
  126. "-webkit-transition-timing-function",
  127. "-moz-transition-timing-function",
  128. "-ms-transition-timing-function",
  129. "-o-transition-timing-function",
  130. "transition-timing-function",
  131. "-webkit-transition-duration",
  132. "-moz-transition-duration",
  133. "-ms-transition-duration",
  134. "-o-transition-duration",
  135. "transition-duration",
  136. "-webkit-transition-property",
  137. "-moz-transition-property",
  138. "-ms-transition-property",
  139. "-o-transition-property",
  140. "transition-property",
  141. "-webkit-transform",
  142. "-moz-transform",
  143. "-ms-transform",
  144. "-o-transform",
  145. "transform",
  146. "-webkit-transform-origin",
  147. "-moz-transform-origin",
  148. "-ms-transform-origin",
  149. "-o-transform-origin",
  150. "transform-origin",
  151. "-webkit-animation",
  152. "-moz-animation",
  153. "-ms-animation",
  154. "-o-animation",
  155. "animation",
  156. "-webkit-animation-name",
  157. "-moz-animation-name",
  158. "-ms-animation-name",
  159. "-o-animation-name",
  160. "animation-name",
  161. "-webkit-animation-duration",
  162. "-moz-animation-duration",
  163. "-ms-animation-duration",
  164. "-o-animation-duration",
  165. "animation-duration",
  166. "-webkit-animation-play-state",
  167. "-moz-animation-play-state",
  168. "-ms-animation-play-state",
  169. "-o-animation-play-state",
  170. "animation-play-state",
  171. "-webkit-animation-timing-function",
  172. "-moz-animation-timing-function",
  173. "-ms-animation-timing-function",
  174. "-o-animation-timing-function",
  175. "animation-timing-function",
  176. "-webkit-animation-delay",
  177. "-moz-animation-delay",
  178. "-ms-animation-delay",
  179. "-o-animation-delay",
  180. "animation-delay",
  181. "-webkit-animation-iteration-count",
  182. "-moz-animation-iteration-count",
  183. "-ms-animation-iteration-count",
  184. "-o-animation-iteration-count",
  185. "animation-iteration-count",
  186. "-webkit-animation-direction",
  187. "-moz-animation-direction",
  188. "-ms-animation-direction",
  189. "-o-animation-direction",
  190. "animation-direction",
  191. "text-align",
  192. "-webkit-text-align-last",
  193. "-moz-text-align-last",
  194. "-ms-text-align-last",
  195. "text-align-last",
  196. "vertical-align",
  197. "white-space",
  198. "text-decoration",
  199. "text-emphasis",
  200. "text-emphasis-color",
  201. "text-emphasis-style",
  202. "text-emphasis-position",
  203. "text-indent",
  204. "-ms-text-justify",
  205. "text-justify",
  206. "letter-spacing",
  207. "word-spacing",
  208. "-ms-writing-mode",
  209. "text-outline",
  210. "text-transform",
  211. "text-wrap",
  212. "text-overflow",
  213. "-ms-text-overflow",
  214. "text-overflow-ellipsis",
  215. "text-overflow-mode",
  216. "-ms-word-wrap",
  217. "word-wrap",
  218. "word-break",
  219. "-ms-word-break",
  220. "-moz-tab-size",
  221. "-o-tab-size",
  222. "tab-size",
  223. "-webkit-hyphens",
  224. "-moz-hyphens",
  225. "hyphens",
  226. "pointer-events"
  227. ],
  228. [
  229. "opacity",
  230. "filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
  231. "-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
  232. "-ms-interpolation-mode",
  233. "color",
  234. "border",
  235. "border-width",
  236. "border-style",
  237. "border-color",
  238. "border-top",
  239. "border-top-width",
  240. "border-top-style",
  241. "border-top-color",
  242. "border-right",
  243. "border-right-width",
  244. "border-right-style",
  245. "border-right-color",
  246. "border-bottom",
  247. "border-bottom-width",
  248. "border-bottom-style",
  249. "border-bottom-color",
  250. "border-left",
  251. "border-left-width",
  252. "border-left-style",
  253. "border-left-color",
  254. "-webkit-border-radius",
  255. "-moz-border-radius",
  256. "border-radius",
  257. "-webkit-border-top-left-radius",
  258. "-moz-border-radius-topleft",
  259. "border-top-left-radius",
  260. "-webkit-border-top-right-radius",
  261. "-moz-border-radius-topright",
  262. "border-top-right-radius",
  263. "-webkit-border-bottom-right-radius",
  264. "-moz-border-radius-bottomright",
  265. "border-bottom-right-radius",
  266. "-webkit-border-bottom-left-radius",
  267. "-moz-border-radius-bottomleft",
  268. "border-bottom-left-radius",
  269. "-webkit-border-image",
  270. "-moz-border-image",
  271. "-o-border-image",
  272. "border-image",
  273. "-webkit-border-image-source",
  274. "-moz-border-image-source",
  275. "-o-border-image-source",
  276. "border-image-source",
  277. "-webkit-border-image-slice",
  278. "-moz-border-image-slice",
  279. "-o-border-image-slice",
  280. "border-image-slice",
  281. "-webkit-border-image-width",
  282. "-moz-border-image-width",
  283. "-o-border-image-width",
  284. "border-image-width",
  285. "-webkit-border-image-outset",
  286. "-moz-border-image-outset",
  287. "-o-border-image-outset",
  288. "border-image-outset",
  289. "-webkit-border-image-repeat",
  290. "-moz-border-image-repeat",
  291. "-o-border-image-repeat",
  292. "border-image-repeat",
  293. "outline",
  294. "outline-width",
  295. "outline-style",
  296. "outline-color",
  297. "outline-offset",
  298. "background",
  299. "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
  300. "background-color",
  301. "background-image",
  302. "background-repeat",
  303. "background-attachment",
  304. "background-position",
  305. "background-position-x",
  306. "-ms-background-position-x",
  307. "background-position-y",
  308. "-ms-background-position-y",
  309. "-webkit-background-clip",
  310. "-moz-background-clip",
  311. "background-clip",
  312. "background-origin",
  313. "-webkit-background-size",
  314. "-moz-background-size",
  315. "-o-background-size",
  316. "background-size",
  317. "box-decoration-break",
  318. "-webkit-box-shadow",
  319. "-moz-box-shadow",
  320. "box-shadow",
  321. "filter:progid:DXImageTransform.Microsoft.gradient",
  322. "-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
  323. "text-shadow"
  324. ]
  325. ]
  326. }