mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 18:00:06 +01:00
32 lines
744 B
Plaintext
32 lines
744 B
Plaintext
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-css-modules",
|
|
"stylelint-prettier/recommended"
|
|
],
|
|
"plugins": ["stylelint-prettier"],
|
|
"syntax": "css",
|
|
"rules": {
|
|
"prettier/prettier": true,
|
|
"string-quotes": "single",
|
|
"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,
|
|
"declaration-colon-newline-after": null,
|
|
"value-list-comma-newline-after": null
|
|
}
|
|
}
|