2021-04-28 10:41:07 -04:00
|
|
|
{
|
|
|
|
"extends": "stylelint-config-sass-guidelines",
|
2024-08-16 09:49:08 -04:00
|
|
|
"plugins": [
|
|
|
|
"stylelint-order"
|
|
|
|
],
|
2021-04-28 10:41:07 -04:00
|
|
|
"rules": {
|
2024-08-16 09:49:08 -04:00
|
|
|
"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 10:41:07 -04:00
|
|
|
"scss/at-import-no-partial-leading-underscore": null,
|
|
|
|
"color-hex-length": null,
|
|
|
|
"selector-pseudo-element-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
2024-08-16 09:49:08 -04:00
|
|
|
"ignorePseudoElements": [
|
|
|
|
"ng-deep"
|
|
|
|
]
|
2021-04-28 10:41:07 -04:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"max-nesting-depth": [
|
|
|
|
8,
|
|
|
|
{
|
2024-08-16 09:49:08 -04:00
|
|
|
"ignore": [
|
|
|
|
"blockless-at-rules",
|
|
|
|
"pseudo-classes"
|
|
|
|
]
|
2021-04-28 10:41:07 -04: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 04:12:04 -05:00
|
|
|
"scss/load-no-partial-leading-underscore": null,
|
2021-05-07 05:25:47 -04:00
|
|
|
"property-no-vendor-prefix": [
|
|
|
|
true,
|
|
|
|
{
|
2024-08-16 09:49:08 -04:00
|
|
|
"ignoreProperties": [
|
|
|
|
"mask-image",
|
|
|
|
"mask-size"
|
|
|
|
]
|
2021-05-07 05:25:47 -04:00
|
|
|
}
|
|
|
|
]
|
2021-04-28 10:41:07 -04:00
|
|
|
}
|
|
|
|
}
|