Files
vladfaust.github.io/.stylelintrc.json
2019-03-22 21:21:16 +03:00

57 lines
2.0 KiB
JSON

{
"processors": [
"stylelint-processor-html"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-rational-order"
],
"rules": {
"no-empty-source": null,
"block-opening-brace-space-after": null,
"block-opening-brace-space-before": null,
"block-closing-brace-space-before": null,
"block-closing-brace-newline-before": null,
"declaration-block-trailing-semicolon": "never",
"indentation": null,
"string-quotes": ["single", {"severity": "warning"}],
"no-duplicate-selectors": true,
"color-hex-case": "lower",
"color-hex-length": "short",
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"selector-attribute-operator-space-before": "never",
"selector-attribute-operator-space-after": "never",
"selector-attribute-brackets-space-inside": "never",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"number-leading-zero": "always",
"function-url-quotes": "always",
"font-weight-notation": "named-where-possible",
"font-family-name-quotes": "always-unless-keyword",
"comment-whitespace-inside": "always",
"at-rule-no-vendor-prefix": true,
"rule-empty-line-before": [
"always-multi-line",
{
"ignore": "first-nested"
}
],
"selector-pseudo-element-colon-notation": "single",
"selector-pseudo-class-parentheses-space-inside": "never",
"selector-no-vendor-prefix": true,
"media-feature-range-operator-space-before": "always",
"media-feature-range-operator-space-after": "always",
"media-feature-parentheses-space-inside": "never",
"media-feature-name-no-vendor-prefix": true,
"media-feature-colon-space-before": "never",
"media-feature-colon-space-after": "always",
"no-descending-specificity": false,
"declaration-empty-line-before": null,
"property-no-unknown": true,
"selector-list-comma-newline-after": "always-multi-line"
}
}