1
0
Fork 0
blog/.stylelintrc

39 lines
712 B
Plaintext
Raw Normal View History

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
],
2021-11-28 17:48:05 +01: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,
2021-11-28 17:48:05 +01:00
{
"ignoreProperties": [
"composes",
"compose-with"
]
}
2019-11-09 12:28:19 +01:00
],
"at-rule-no-unknown": [
true,
2021-11-28 17:48:05 +01:00
{
"ignoreAtRules": [
"value",
"include",
"mixin",
"extend"
]
}
],
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"custom-property-pattern": null,
"selector-id-pattern": null
2018-07-11 17:56:13 +02:00
}
}