feishin/.stylelintrc.json

20 lines
801 B
JSON
Raw Normal View History

2022-12-19 15:59:14 -08:00
{
2023-07-01 19:10:05 -07:00
"extends": [
"stylelint-config-standard",
"stylelint-config-css-modules",
"stylelint-config-recess-order"
2022-12-19 15:59:14 -08:00
],
2023-07-01 19:10:05 -07:00
"rules": {
"block-no-empty": null,
2023-07-01 19:10:05 -07:00
"selector-type-case": ["lower", { "ignoreTypes": ["/^\\$\\w+/"] }],
"selector-type-no-unknown": [true, { "ignoreTypes": ["/-styled-mixin/", "/^\\$\\w+/"] }],
"declaration-block-no-shorthand-property-overrides": null,
"declaration-block-no-redundant-longhand-properties": null,
"at-rule-no-unknown": [true, { "ignoreAtRules": ["mixin"] }],
"function-no-unknown": [true, { "ignoreFunctions": ["darken", "alpha", "lighten"] }],
"declaration-property-value-no-unknown": null,
"no-descending-specificity": null,
"no-empty-source": null
2023-07-01 19:10:05 -07:00
}
2022-12-19 15:59:14 -08:00
}