1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-23 19:08:25 +02:00
mkdocs-material/.stylelintrc

42 lines
1.3 KiB
Plaintext
Raw Normal View History

2017-01-01 15:59:44 +01:00
{
"extends": [
"stylelint-config-recommended",
"stylelint-config-rational-order"
],
2017-01-01 15:59:44 +01:00
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {
"at-rule-empty-line-before": null,
2017-07-25 17:30:47 +02:00
"at-rule-no-unknown": null,
2017-01-01 15:59:44 +01:00
"at-rule-no-vendor-prefix": true,
"block-opening-brace-space-before": null,
"block-closing-brace-newline-after": ["always", {
"ignoreAtRules": [
"if",
"else",
"elseif"
]
}],
"color-hex-case": "upper",
"color-hex-length": "long",
"color-named": "never",
"comment-empty-line-before": ["always", {
"ignore": ["stylelint-commands"]
}],
"font-family-name-quotes": "always-where-recommended",
"font-weight-notation": "numeric",
"function-url-quotes": "always",
2017-12-12 22:01:03 +01:00
"no-descending-specificity": null,
2017-01-01 15:59:44 +01:00
"no-unknown-animations": true,
2020-09-07 19:04:26 +02:00
"property-no-vendor-prefix": [true, {"ignoreProperties": ["line-clamp", "box-orient"]}],
2017-01-01 15:59:44 +01:00
"selector-class-pattern": "^[a-z0-9]+(-[a-z0-9]+)*(__[a-z]+)?(--[a-z]+)?$",
"selector-descendant-combinator-no-non-space": null,
"string-quotes": "double",
2020-09-07 19:04:26 +02:00
"unit-allowed-list": ["px", "em", "deg", "ms", "%", "mm", "vh", "vw", "dppx"],
2017-01-01 15:59:44 +01:00
"value-keyword-case": "lower",
2020-09-07 19:04:26 +02:00
"value-no-vendor-prefix": [true, {"ignoreValues": ["box"]}]
2017-01-01 15:59:44 +01:00
}
}