ModularVencord/.stylelintrc.json

19 lines
450 B
JSON
Raw Normal View History

2023-01-30 04:02:17 +00:00
{
"extends": [
"stylelint-config-standard",
"@stylistic/stylelint-config"
],
"plugins": [
"@stylistic/stylelint-plugin"
],
2023-01-30 04:02:17 +00:00
"rules": {
"@stylistic/indentation": 4,
2024-07-01 22:17:40 +00:00
"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
}
}