mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-15 17:45:31 +01:00
21 lines
455 B
Plaintext
21 lines
455 B
Plaintext
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-css-modules",
|
|
"stylelint-prettier/recommended"
|
|
],
|
|
"plugins": ["stylelint-prettier"],
|
|
"syntax": "scss",
|
|
"rules": {
|
|
"prettier/prettier": true,
|
|
"property-no-unknown": [
|
|
true,
|
|
{ "ignoreProperties": ["composes", "compose-with"] }
|
|
],
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{ "ignoreAtRules": ["value", "include", "mixin", "extend"] }
|
|
]
|
|
}
|
|
}
|