2022-07-26 05:10:01 +00:00
|
|
|
{
|
2023-12-16 00:09:16 +00:00
|
|
|
"extends": ["stylelint-config-standard"],
|
2022-07-26 05:10:01 +00:00
|
|
|
"rules": {
|
2023-12-16 00:09:16 +00:00
|
|
|
"declaration-block-no-redundant-longhand-properties": [
|
|
|
|
true,
|
|
|
|
{ "ignoreShorthands": ["gap", "inset"] }
|
|
|
|
],
|
2022-07-26 05:10:01 +00:00
|
|
|
"no-descending-specificity": null,
|
2023-12-16 00:09:16 +00:00
|
|
|
"media-feature-range-notation": null,
|
2022-07-26 05:10:01 +00:00
|
|
|
"custom-property-pattern": "^([a-z][a-z0-9]*)(-{1,2}[a-z0-9]+)*$",
|
|
|
|
"selector-class-pattern": [
|
|
|
|
"^[a-z]+[0-9]{0,2}(-[a-z0-9]+)*(__[a-z0-9]+(-[a-z0-9]+)*)?(--[a-z0-9]+(-[a-z0-9]+)*)?$",
|
|
|
|
{ "resolveNestedSelectors": true }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|