2018-07-11 17:56:13 +02:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"stylelint-config-standard",
|
|
|
|
"stylelint-config-css-modules",
|
2019-10-02 13:35:50 +02:00
|
|
|
"stylelint-prettier/recommended"
|
2018-07-11 17:56:13 +02:00
|
|
|
],
|
2019-10-02 13:35:50 +02:00
|
|
|
"plugins": ["stylelint-prettier"],
|
2021-03-06 01:35:05 +01:00
|
|
|
"syntax": "css",
|
2018-07-11 17:56:13 +02:00
|
|
|
"rules": {
|
2019-11-09 12:28:19 +01:00
|
|
|
"prettier/prettier": true,
|
|
|
|
"property-no-unknown": [
|
|
|
|
true,
|
|
|
|
{ "ignoreProperties": ["composes", "compose-with"] }
|
|
|
|
],
|
|
|
|
"at-rule-no-unknown": [
|
|
|
|
true,
|
|
|
|
{ "ignoreAtRules": ["value", "include", "mixin", "extend"] }
|
|
|
|
]
|
2018-07-11 17:56:13 +02:00
|
|
|
}
|
|
|
|
}
|