ModularVencord/.stylelintrc.json

13 lines
322 B
JSON
Raw Permalink Normal View History

2023-01-30 04:02:17 +00:00
{
"extends": "stylelint-config-standard",
"rules": {
2024-07-02 15:39:48 +00:00
"indentation": 4,
"selector-class-pattern": [
"^[a-z][a-zA-Z0-9]*(-[a-z0-9][a-zA-Z0-9]*)*$",
{
"message": "Expected class selector to be kebab-case with camelCase segments"
}
]
2023-01-30 04:02:17 +00:00
}
}