2022-12-19 15:59:14 -08:00
|
|
|
{
|
2023-07-01 19:10:05 -07:00
|
|
|
"extends": [
|
|
|
|
|
"stylelint-config-standard-scss",
|
2023-07-23 05:16:29 -07:00
|
|
|
"stylelint-config-css-modules",
|
2023-07-01 19:10:05 -07:00
|
|
|
"stylelint-config-rational-order"
|
2022-12-19 15:59:14 -08:00
|
|
|
],
|
2023-07-01 19:10:05 -07:00
|
|
|
"rules": {
|
2023-07-04 17:19:29 -07:00
|
|
|
"indentation": 4,
|
2023-07-01 19:10:05 -07:00
|
|
|
"color-function-notation": ["legacy"],
|
|
|
|
|
"declaration-empty-line-before": null,
|
|
|
|
|
"order/properties-order": [],
|
|
|
|
|
"plugin/rational-order": [
|
|
|
|
|
true,
|
|
|
|
|
{
|
|
|
|
|
"border-in-box-model": false,
|
|
|
|
|
"empty-line-between-groups": false
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"string-quotes": "single",
|
|
|
|
|
"declaration-block-no-redundant-longhand-properties": null,
|
|
|
|
|
"selector-class-pattern": null,
|
|
|
|
|
"selector-type-case": ["lower", { "ignoreTypes": ["/^\\$\\w+/"] }],
|
|
|
|
|
"selector-type-no-unknown": [true, { "ignoreTypes": ["/-styled-mixin/", "/^\\$\\w+/"] }],
|
|
|
|
|
"value-keyword-case": ["lower", { "ignoreKeywords": ["dummyValue"] }],
|
|
|
|
|
"declaration-colon-newline-after": null
|
|
|
|
|
}
|
2022-12-19 15:59:14 -08:00
|
|
|
}
|