- update yarn lock
- add eslint to peer dependencies
- fixed the html-has-lang iframe-has-title errors could also appear in situations where we can't discern the base tag (e.g., styled(CustomComponent)`` where CustomComponent is defined in a separate file).
- fixed bug with combined component objects (such as animated.div) which would end up causin html-has-lang and iframe-has-title errors to show where they shouldn't have.
- added Adds support for checking as specified element for Custom Components.
- added extends plugin:jsx-a11y to index configuration now that airbnb config is removed, fixing issue with missing rules from react-ally/aribnb config as mentioned here.
- removed eslint conflig airbnb from the plugin so it is more directly aligned with eslint-plugin-jsx-a11y as requested here. Merged here.
- added support for components defined with string syntax (
styled('div')
instead ofstyled.div
) as requested here. Added test cases for this syntax.
- Re-added support for styled components defined within objects while fixing the
hang.
jsx-ast-utils
needed to be upgraded to avoid an error withChainingExpressions
, but using the newer version ofjsx-ast-utils
may cause issues in some older environments.
- Reverted changes from 0.0.37, which were causing eslint to hang.
- Changed the image links in the readme to externally hosted images so they are visible outside github on npm.
- Add support for styled components defined as objects. (@pawelglosz in #39)