PeerTube/client/.stylelintrc.json

73 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2021-04-28 14:41:07 +00:00
{
"extends": "stylelint-config-sass-guidelines",
"plugins": [
"stylelint-order"
],
2021-04-28 14:41:07 +00:00
"rules": {
"declaration-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [ "after-declaration", "after-comment" ]
}
],
"at-rule-empty-line-before": [
"always",
{
"except": [
"first-nested",
"blockless-after-blockless"
],
"ignore": [ "after-comment" ],
"ignoreAtRules": [ "else" ]
}
],
"order/order": [
"custom-properties",
"declarations",
{
"type": "at-rule",
"name": "include"
}
],
"scss/selector-no-redundant-nesting-selector": null,
2021-04-28 14:41:07 +00:00
"scss/at-import-no-partial-leading-underscore": null,
"color-hex-length": null,
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"ng-deep"
]
2021-04-28 14:41:07 +00:00
}
],
"max-nesting-depth": [
8,
{
"ignore": [
"blockless-at-rules",
"pseudo-classes"
]
2021-04-28 14:41:07 +00:00
}
],
"selector-max-compound-selectors": 9,
"selector-no-qualifying-type": null,
"scss/at-extend-no-missing-placeholder": null,
"rule-empty-line-before": null,
"selector-max-id": null,
"scss/at-function-pattern": null,
2024-02-22 09:12:04 +00:00
"scss/load-no-partial-leading-underscore": null,
"property-no-vendor-prefix": [
true,
{
"ignoreProperties": [
"mask-image",
"mask-size"
]
}
]
2021-04-28 14:41:07 +00:00
}
}