ream88 / stylelint-config-idiomatic-order

stylelint + idiomatic-css = ❤️
https://www.npmjs.com/package/stylelint-config-idiomatic-order
MIT License
180 stars 19 forks source link

Stylelint 15 support #78

Closed sklawren closed 1 year ago

sklawren commented 1 year ago

This works with stylelint 15 without issue, but there's a peer dependency warning. Simple to fix by updating to stylelint 15 in your package.json.

warning "stylelint-config-idiomatic-order > stylelint-order@5.0.0" has incorrect peer dependency "stylelint@^14.0.0".
spacedawwwg commented 1 year ago

to get by for now until that PR is merged, I'm using (with yarn):

{
  "resolutions": {
    "stylelint-order": "6.0.3"
  }
}
unikitty37 commented 1 year ago

Thanks, @spacedawwwg — npm users should replace resolutions with overrides, FWIW.