File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ Add `plugin:jsx-a11y/recommended` or `plugin:jsx-a11y/strict` in `extends`:
9999
100100## Supported Rules
101101
102- - [ accessible-emoji] ( docs/rules/accessible-emoji.md ) : Enforce emojis are wrapped in ` <span> ` and provide screenreader access.
103102- [ alt-text] ( docs/rules/alt-text.md ) : Enforce all elements that require alternative text have meaningful information to relay back to end user.
104103- [ anchor-has-content] ( docs/rules/anchor-has-content.md ) : Enforce all anchors to contain accessible content.
105104- [ 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`:
138137
139138Rule | Recommended | Strict
140139------------ | ------------- | -------------
141- [ accessible-emoji] ( https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/accessible-emoji.md ) | error | error
142140[ alt-text] ( https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/alt-text.md ) | error | error
143141[ anchor-has-content] ( https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-has-content.md ) | error | error
144142[ anchor-is-valid] ( https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md ) | error | error
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ module.exports = {
5050 } ,
5151 } ,
5252 rules : {
53- 'jsx-a11y/accessible-emoji' : 'error ' ,
53+ 'jsx-a11y/accessible-emoji' : 'off ' ,
5454 'jsx-a11y/alt-text' : 'error' ,
5555 'jsx-a11y/anchor-has-content' : 'error' ,
5656 'jsx-a11y/anchor-is-valid' : 'error' ,
@@ -206,7 +206,7 @@ module.exports = {
206206 } ,
207207 } ,
208208 rules : {
209- 'jsx-a11y/accessible-emoji' : 'error ' ,
209+ 'jsx-a11y/accessible-emoji' : 'off ' ,
210210 'jsx-a11y/alt-text' : 'error' ,
211211 'jsx-a11y/anchor-has-content' : 'error' ,
212212 'jsx-a11y/anchor-is-valid' : 'error' ,
You can’t perform that action at this time.
0 commit comments