From ecec8e4fb22156de5a2d7e4a142d82407e4628af Mon Sep 17 00:00:00 2001 From: Diane Ko Date: Wed, 24 Mar 2021 19:37:47 -0700 Subject: [PATCH] Fully deprecate accessible-emoji rule The [accessible-emoji rule got marked as deprecated](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/pull/713) to address https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues/627, but was never removed from the rule set. This removes the rule from the strict and recommended lists and also updates the readme to reflect it being deprecated. --- README.md | 2 -- src/index.js | 2 -- 2 files changed, 4 deletions(-) diff --git a/README.md b/README.md index 54cb6ab56..3ef850dec 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,6 @@ Add `plugin:jsx-a11y/recommended` or `plugin:jsx-a11y/strict` in `extends`: ## Supported Rules -- [accessible-emoji](docs/rules/accessible-emoji.md): Enforce emojis are wrapped in `` and provide screenreader access. - [alt-text](docs/rules/alt-text.md): Enforce all elements that require alternative text have meaningful information to relay back to end user. - [anchor-has-content](docs/rules/anchor-has-content.md): Enforce all anchors to contain accessible content. - [anchor-is-valid](docs/rules/anchor-is-valid.md): Enforce all anchors are valid, navigable elements. @@ -138,7 +137,6 @@ Add `plugin:jsx-a11y/recommended` or `plugin:jsx-a11y/strict` in `extends`: Rule | Recommended | Strict ------------ | ------------- | ------------- -[accessible-emoji](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/accessible-emoji.md) | error | error [alt-text](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/alt-text.md) | error | error [anchor-has-content](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-has-content.md) | error | error [anchor-is-valid](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md) | error | error diff --git a/src/index.js b/src/index.js index ee4a6ef64..a679eafeb 100644 --- a/src/index.js +++ b/src/index.js @@ -50,7 +50,6 @@ module.exports = { }, }, rules: { - 'jsx-a11y/accessible-emoji': 'error', 'jsx-a11y/alt-text': 'error', 'jsx-a11y/anchor-has-content': 'error', 'jsx-a11y/anchor-is-valid': 'error', @@ -206,7 +205,6 @@ module.exports = { }, }, rules: { - 'jsx-a11y/accessible-emoji': 'error', 'jsx-a11y/alt-text': 'error', 'jsx-a11y/anchor-has-content': 'error', 'jsx-a11y/anchor-is-valid': 'error',