additionals/.stylelintrc.json

21 lines
488 B
JSON
Raw Normal View History

2017-12-13 00:10:10 +03:00
{
2022-12-29 14:10:26 +03:00
"extends": "stylelint-config-standard",
2017-12-13 00:10:10 +03:00
"rules": {
2022-12-29 14:10:26 +03:00
"string-quotes": "single",
"selector-class-pattern": "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$|block_column",
"font-family-no-missing-generic-family-keyword": [
2017-12-13 00:10:10 +03:00
true,
{
2022-12-29 14:10:26 +03:00
"ignoreFontFamilies": [
"Font Awesome 5 Free",
"Font Awesome 5 Brands",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji"
2017-12-13 00:10:10 +03:00
]
}
2022-12-29 14:10:26 +03:00
]
2017-12-13 00:10:10 +03:00
}
}