This PostCSS plugin safely converts CSS selector names to camelCase, without affecting pseudo selectors and attributes.
Turns .block__element--modifier :not(:first-child)
into .blockElementModifier :not(:first-child)
.
Removing -
and _
characters from CSS class names may cause naming conflicts:
.my-class -> .myClass
.my_class -> .myClass
While both styles are valid and can be used interchangeably, camelCase selectors are more commonly used in JavaScript and other programming languages. This is because camelCase is easier to read and more consistent with the naming conventions used in those languages. It is mainly built for CSS Modules.