stylelint-config-css-modules
stylelint-config-css-modules copied to clipboard
CSS modules shareable config for stylelint
In new version of `stylelint-config-standard@^20.0.0"` has a rule `value-keyword-case` if use flag `--fix` then classnames fixed to lowercase in composes. run: ```bush npx stylelint src/**/*.css --fix ``` transform: ```diff .btnDefault...
Writing css like this: ``` @value small, large, from './breakpoints.css'; ``` will fail while compiling (due to the trailing comma after large). Would it be possible for this plugin to...
See #7, #13 Just checking what it takes, whether it make sense or not. While this "solves" the issue with classes used with `composes`. This does not solve the one...
It's common to enforce camelCase for all local class names when using CSS modules, while ignoring global class names, since we don't have control over third-party libraries. A detailed discussion...