mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
18 lines
637 B
JSON
18 lines
637 B
JSON
{
|
|
"customSyntax": "postcss-styled-syntax",
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-styled-components",
|
|
"stylelint-config-recess-order"
|
|
],
|
|
"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,
|
|
"property-no-vendor-prefix": null
|
|
}
|
|
}
|