feishin/.stylelintrc.json

17 lines
594 B
JSON
Raw Normal View History

2022-12-19 15:59:14 -08:00
{
"customSyntax": "postcss-styled-syntax",
2023-07-01 19:10:05 -07:00
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components",
"stylelint-config-recess-order"
2022-12-19 15:59:14 -08:00
],
2023-07-01 19:10:05 -07: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+/"] }],
"declaration-colon-newline-after": null
}
2022-12-19 15:59:14 -08:00
}