Created
March 24, 2017 20:01
-
-
Save chrishoage/bdedf025288486050fd60535bd018c3e to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"plugins": [ | |
"stylelint-order" | |
], | |
"rules": { | |
"color-hex-case": "lower", | |
"color-hex-length": "short", | |
"color-named": "never", | |
"color-no-invalid-hex": true, | |
"font-family-name-quotes": "always-unless-keyword", | |
"function-calc-no-unspaced-operator": true, | |
"function-comma-newline-after": "never-multi-line", | |
"function-comma-newline-before": "never-multi-line", | |
"function-comma-space-after": "always", | |
"function-comma-space-before": "never", | |
"function-linear-gradient-no-nonstandard-direction": true, | |
"function-name-case": "lower", | |
"function-parentheses-newline-inside": "never-multi-line", | |
"function-parentheses-space-inside": "never", | |
"function-url-data-uris": "never", | |
"function-url-quotes": "always", | |
"function-whitespace-after": "always", | |
"number-leading-zero": "always", | |
"number-no-trailing-zeros": true, | |
"string-no-newline": true, | |
"string-quotes": "single", | |
"length-zero-no-unit": true, | |
"time-min-milliseconds": 100, | |
"unit-case": "lower", | |
"unit-no-unknown": true, | |
"value-no-vendor-prefix": true, | |
"value-list-comma-newline-after": "never-multi-line", | |
"value-list-comma-newline-before": "never-multi-line", | |
"value-list-comma-space-after": "always", | |
"value-list-comma-space-before": "never", | |
"value-list-max-empty-lines": 0, | |
"shorthand-property-no-redundant-values": true, | |
"property-case": "lower", | |
"property-no-vendor-prefix": true, | |
"keyframe-declaration-no-important": true, | |
"declaration-bang-space-after": "never", | |
"declaration-bang-space-before": "always", | |
"declaration-colon-space-after": "always", | |
"declaration-colon-space-before": "never", | |
"declaration-block-no-duplicate-properties": [true, { | |
"ignoreProperties": ["composes"] | |
}], | |
"declaration-block-no-redundant-longhand-properties": true, | |
"declaration-block-no-shorthand-property-overrides": true, | |
"declaration-block-semicolon-newline-after": "always", | |
"declaration-block-semicolon-newline-before": "never-multi-line", | |
"declaration-block-semicolon-space-before": "never", | |
"declaration-block-single-line-max-declarations": 1, | |
"declaration-block-trailing-semicolon": "always", | |
"block-closing-brace-empty-line-before": "never", | |
"block-closing-brace-newline-after": "always", | |
"block-closing-brace-newline-before": "always", | |
"block-closing-brace-space-after": "always-single-line", | |
"block-closing-brace-space-before": "always-single-line", | |
"block-no-empty": true, | |
"block-opening-brace-newline-after": "always", | |
"block-opening-brace-newline-before": "never-single-line", | |
"block-opening-brace-space-after": "always-single-line", | |
"block-opening-brace-space-before": "always", | |
"selector-attribute-brackets-space-inside": "never", | |
"selector-attribute-operator-space-after": "never", | |
"selector-attribute-operator-space-before": "never", | |
"selector-attribute-quotes": "never", | |
"selector-class-pattern": "^[A-Za-z0-9]+$", | |
"selector-combinator-space-after": "always", | |
"selector-combinator-space-before": "always", | |
"selector-descendant-combinator-no-non-space": true, | |
"selector-max-compound-selectors": 3, | |
"selector-no-attribute": true, | |
"selector-no-id": true, | |
"selector-no-universal": true, | |
"selector-pseudo-class-case": "lower", | |
"selector-pseudo-class-parentheses-space-inside": "never", | |
"selector-pseudo-element-case": "lower", | |
"selector-pseudo-element-colon-notation": "double", | |
"selector-pseudo-element-no-unknown": true, | |
"selector-type-case": "lower", | |
"selector-type-no-unknown": true, | |
"selector-max-empty-lines": 0, | |
"selector-list-comma-newline-after": "always", | |
"selector-list-comma-newline-before": "never-multi-line", | |
"selector-list-comma-space-before": "never", | |
"rule-empty-line-before": ["always", { | |
"except": ["first-nested"], | |
"ignore": ["after-comment"] | |
}], | |
"media-feature-colon-space-after": "always", | |
"media-feature-colon-space-before": "never", | |
"media-feature-name-case": "lower", | |
"media-feature-name-no-vendor-prefix": true, | |
"media-feature-range-operator-space-after": "always", | |
"media-feature-range-operator-space-before": "always", | |
"at-rule-empty-line-before": ["always", { | |
"except": [ | |
"inside-block" | |
] | |
}], | |
"at-rule-name-case": "lower", | |
"at-rule-name-newline-after": "always-multi-line", | |
"at-rule-name-space-after": "always", | |
"at-rule-no-unknown": [true, { | |
"ignoreAtRules": [ | |
"/^add\\-mixin$/", | |
"/^define\\-mixin$/" | |
] | |
}], | |
"at-rule-no-vendor-prefix": true, | |
"at-rule-semicolon-newline-after": "always", | |
"comment-whitespace-inside": "always", | |
"indentation": 2, | |
"max-empty-lines": 1, | |
"max-line-length": [100, { | |
"ignore": ["non-comments"] | |
}], | |
"max-nesting-depth": 2, | |
"no-empty-source": true, | |
"no-eol-whitespace": true, | |
"no-extra-semicolons": true, | |
"no-invalid-double-slash-comments": true, | |
"no-missing-end-of-source-newline": true, | |
"order/order": [ | |
"custom-properties", | |
"dollar-variables", | |
{ | |
"type": "at-rule", | |
"hasBlock": false, | |
"name": "add-mixin" | |
}, | |
"declarations", | |
"rules", | |
"at-rules" | |
], | |
"order/properties-order": [ | |
{ | |
"emptyLineBefore": "always", | |
"properties": [ | |
"composes" | |
] | |
}, | |
{ | |
"emptyLineBefore": "always", | |
"properties": [ | |
"position", | |
"top", | |
"right", | |
"bottom", | |
"left", | |
"z-index", | |
"display", | |
"visibility", | |
"align-content", | |
"align-items", | |
"align-self", | |
"justify-content", | |
"flex", | |
"flex-direction", | |
"flex-order", | |
"flex-pack", | |
"flex-align", | |
"flex-grow", | |
"flex-shrink", | |
"flex-basis", | |
"flex-wrap", | |
"float", | |
"clear", | |
"overflow", | |
"overflow-x", | |
"overflow-y", | |
"-webkit-overflow-scrolling", | |
"clip", | |
"box-sizing", | |
"margin", | |
"margin-top", | |
"margin-right", | |
"margin-bottom", | |
"margin-left", | |
"padding", | |
"padding-top", | |
"padding-right", | |
"padding-bottom", | |
"padding-left", | |
"min-width", | |
"min-height", | |
"max-width", | |
"max-height", | |
"width", | |
"height", | |
"outline", | |
"outline-width", | |
"outline-style", | |
"outline-color", | |
"outline-offset", | |
"border", | |
"border-spacing", | |
"border-collapse", | |
"border-width", | |
"border-style", | |
"border-color", | |
"border-top", | |
"border-top-width", | |
"border-top-style", | |
"border-top-color", | |
"border-right", | |
"border-right-width", | |
"border-right-style", | |
"border-right-color", | |
"border-bottom", | |
"border-bottom-width", | |
"border-bottom-style", | |
"border-bottom-color", | |
"border-left", | |
"border-left-width", | |
"border-left-style", | |
"border-left-color", | |
"border-radius", | |
"border-top-left-radius", | |
"border-top-right-radius", | |
"border-bottom-right-radius", | |
"border-bottom-left-radius", | |
"border-image", | |
"border-image-source", | |
"border-image-slice", | |
"border-image-width", | |
"border-image-outset", | |
"border-image-repeat", | |
"border-top-image", | |
"border-right-image", | |
"border-bottom-image", | |
"border-left-image", | |
"border-corner-image", | |
"border-top-left-image", | |
"border-top-right-image", | |
"border-bottom-right-image", | |
"border-bottom-left-image", | |
"background", | |
"background-color", | |
"background-image", | |
"background-attachment", | |
"background-position", | |
"background-position-x", | |
"background-position-y", | |
"background-clip", | |
"background-origin", | |
"background-size", | |
"background-repeat", | |
"box-decoration-break", | |
"box-shadow", | |
"color", | |
"table-layout", | |
"caption-side", | |
"empty-cells", | |
"list-style", | |
"list-style-position", | |
"list-style-type", | |
"list-style-image", | |
"quotes", | |
"content", | |
"counter-increment", | |
"counter-reset", | |
"-ms-writing-mode", | |
"vertical-align", | |
"text-align", | |
"text-align-last", | |
"text-decoration", | |
"text-emphasis", | |
"text-emphasis-position", | |
"text-emphasis-style", | |
"text-emphasis-color", | |
"text-indent", | |
"text-justify", | |
"text-outline", | |
"text-transform", | |
"text-wrap", | |
"text-overflow", | |
"text-overflow-ellipsis", | |
"text-overflow-mode", | |
"text-shadow", | |
"white-space", | |
"word-spacing", | |
"word-wrap", | |
"word-break", | |
"tab-size", | |
"hyphens", | |
"letter-spacing", | |
"font", | |
"font-weight", | |
"font-style", | |
"font-variant", | |
"font-size-adjust", | |
"font-stretch", | |
"font-size", | |
"font-family", | |
"font-smoothing", | |
"-moz-osx-font-smoothing", | |
"-webkit-font-smoothing", | |
"src", | |
"line-height", | |
"opacity", | |
"filter", | |
"resize", | |
"cursor", | |
"appearance", | |
"nav-index", | |
"nav-up", | |
"nav-right", | |
"nav-down", | |
"nav-left", | |
"transition", | |
"transition-delay", | |
"transition-timing-function", | |
"transition-duration", | |
"transition-property", | |
"transform", | |
"transform-origin", | |
"transform-style", | |
"backface-visibility", | |
"animation", | |
"animation-name", | |
"animation-duration", | |
"animation-play-state", | |
"animation-timing-function", | |
"animation-delay", | |
"animation-iteration-count", | |
"animation-direction", | |
"animation-fill-mode", | |
"pointer-events", | |
"user-select", | |
"touch-action", | |
"-webkit-tap-highlight-color", | |
"unicode-bidi", | |
"direction", | |
"columns", | |
"column-span", | |
"column-width", | |
"column-count", | |
"column-fill", | |
"column-gap", | |
"column-rule", | |
"column-rule-width", | |
"column-rule-style", | |
"column-rule-color", | |
"break-before", | |
"break-inside", | |
"break-after", | |
"page-break-before", | |
"page-break-inside", | |
"page-break-after", | |
"orphans", | |
"widows", | |
"zoom", | |
"max-zoom", | |
"min-zoom", | |
"user-zoom", | |
"orientation" | |
] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment