- 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)