Doug Lauder
2023-03-22 17:22:27 -04:00
коммит произвёл GitHub
родитель b61c096497
Коммит c943ed6859
13276 изменённых файлов: 1695615 добавлений и 223189 удалений

20
webapp/channels/.stylelintrc.json Обычный файл
Просмотреть файл

@@ -0,0 +1,20 @@
{
"extends": ["stylelint-config-recommended", "stylelint-config-standard", "stylelint-config-idiomatic-order", "stylelint-config-recommended-scss"],
"rules": {
"indentation": 4,
"no-descending-specificity": null,
"font-family-no-missing-generic-family-keyword": null,
"property-no-unknown": [
true,
{
"ignoreProperties": ["scrollbar-3dlight-color"]
}
],
"block-no-empty": [
true,
{
"ignore": ["comments"]
}
]
}
}