1
0
Fork 0
blog/.config/.stylelintrc.json

30 lines
670 B
JSON
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
],
2023-02-28 18:50:51 +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
{
2023-02-28 18:50:51 +01:00
"ignoreProperties": ["composes", "compose-with"]
2021-11-28 17:48:05 +01:00
}
2019-11-09 12:28:19 +01:00
],
"at-rule-no-unknown": [
true,
2021-11-28 17:48:05 +01:00
{
2023-02-28 18:50:51 +01:00
"ignoreAtRules": ["value", "include", "mixin", "extend"]
2021-11-28 17:48:05 +01:00
}
],
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"custom-property-pattern": null,
2023-02-28 18:50:51 +01:00
"selector-id-pattern": null,
2023-04-01 16:15:56 +02:00
"media-feature-range-notation": "prefix"
2018-07-11 17:56:13 +02:00
}
}