UNPKG

@frontlint/stylelint

Version:

[stylelint](https://stylelint.io) 是一个强大的 CSS 代码检查工具,用于强制执行一致的代码风格,避免样式错误并提高代码质量。通过自定义规则集,可以确保团队遵循统一的 CSS 编码标准

73 lines (71 loc) 1.16 kB
"use strict"; //#region src/properties-order.ts var properties_order_default = [ "position", "top", "right", "bottom", "left", "z-index", "inset", "display", "flex", "flex-direction", "flex-wrap", "flex-flow", "justify-content", "align-items", "align-content", "grid", "grid-template", "grid-template-columns", "grid-template-rows", "width", "min-width", "max-width", "height", "min-height", "max-height", "margin", "margin-top", "margin-right", "margin-bottom", "margin-left", "padding", "padding-top", "padding-right", "padding-bottom", "padding-left", "border", "border-width", "border-style", "border-color", "border-radius", "background", "background-color", "background-image", "background-position", "background-repeat", "background-size", "color", "font", "font-size", "font-family", "font-weight", "text-align", "text-decoration", "line-height", "letter-spacing", "opacity", "box-shadow", "transform", "transition", "animation" ]; //#endregion Object.defineProperty(exports, 'properties_order_default', { enumerable: true, get: function () { return properties_order_default; } });