feishin/.stylelintrc.json

28 lines
964 B
JSON
Raw Normal View History

2022-12-20 00:59:14 +01:00
{
2023-07-02 04:10:05 +02:00
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-css-modules",
2023-07-02 04:10:05 +02:00
"stylelint-config-rational-order"
2022-12-20 00:59:14 +01:00
],
2023-07-02 04:10:05 +02:00
"rules": {
2023-07-05 02:19:29 +02:00
"indentation": 4,
2023-07-02 04:10:05 +02: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-20 00:59:14 +01:00
}