Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 529 Bytes

grumpy-scissors-watch.md

File metadata and controls

25 lines (21 loc) · 529 Bytes
stylelint
major

Change: extends in overrides to be consistent with plugins behaviour

overrides.extends is fixed to make consistency with the overrides.plugins behavior and be merged not replaced.

If you would like to keep the previous behavior, you would need to change your config as below:

{
- "extends": ["config-a"]
  "overrides": [
    {
      "rules": ["*.module.css"],
      "extends": ["config-b"]
    },
+   {
+     "rules": ["*.css"],
+     "extends": ["config-a"]
+   },
  ]
}