mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 09:56:51 +01:00
39 lines
712 B
Plaintext
39 lines
712 B
Plaintext
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-css-modules",
|
|
"stylelint-prettier/recommended"
|
|
],
|
|
"plugins": [
|
|
"stylelint-prettier"
|
|
],
|
|
"syntax": "css",
|
|
"rules": {
|
|
"prettier/prettier": true,
|
|
"property-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreProperties": [
|
|
"composes",
|
|
"compose-with"
|
|
]
|
|
}
|
|
],
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreAtRules": [
|
|
"value",
|
|
"include",
|
|
"mixin",
|
|
"extend"
|
|
]
|
|
}
|
|
],
|
|
"selector-class-pattern": null,
|
|
"keyframes-name-pattern": null,
|
|
"custom-property-pattern": null,
|
|
"selector-id-pattern": null
|
|
}
|
|
}
|