feishin/.stylelintrc.json

18 lines
637 B
JSON
Raw Normal View History

2022-12-20 00:59:14 +01:00
{
"customSyntax": "postcss-styled-syntax",
2023-07-02 04:10:05 +02:00
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components",
"stylelint-config-recess-order"
2022-12-20 00:59:14 +01:00
],
2023-07-02 04:10:05 +02:00
"rules": {
"declaration-empty-line-before": null,
"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+/"] }],
2023-09-22 02:41:19 +02:00
"declaration-colon-newline-after": null,
"property-no-vendor-prefix": null
2023-07-02 04:10:05 +02:00
}
2022-12-20 00:59:14 +01:00
}