@@ -8,7 +8,7 @@ module.exports = {
88 'plugin:react/recommended' ,
99 'eslint:recommended' ,
1010 'standard' ,
11- 'plugin:jsx-a11y/recommended' ,
11+ 'plugin:jsx-a11y/recommended'
1212 ] ,
1313 overrides : [
1414 ] ,
@@ -19,7 +19,7 @@ module.exports = {
1919 } ,
2020 plugins : [
2121 'react' ,
22- 'jsx-a11y' ,
22+ 'jsx-a11y'
2323 ] ,
2424 rules : {
2525 'jsx-a11y/alt-text' : 'warn' ,
@@ -64,6 +64,36 @@ module.exports = {
6464 semi : [
6565 'warn' ,
6666 'always'
67- ]
67+ ] ,
68+ 'jsx-a11y/accessible-emoji' : 'warn' ,
69+ 'jsx-a11y/anchor-has-content' : 'warn' ,
70+ 'jsx-a11y/aria-activedescendant-has-tabindex' : 'warn' ,
71+ 'jsx-a11y/aria-props' : 'warn' ,
72+ 'jsx-a11y/aria-proptypes' : 'warn' ,
73+ 'jsx-a11y/aria-role' : 'warn' ,
74+ 'jsx-a11y/aria-unsupported-elements' : 'warn' ,
75+ 'jsx-a11y/click-events-have-key-events' : 'warn' ,
76+ 'jsx-a11y/heading-has-content' : 'warn' ,
77+ 'jsx-a11y/html-has-lang' : 'warn' ,
78+ 'jsx-a11y/iframe-has-title' : 'warn' ,
79+ 'jsx-a11y/img-redundant-alt' : 'warn' ,
80+ 'jsx-a11y/interactive-supports-focus' : 'warn' ,
81+ 'jsx-a11y/label-has-associated-control' : 'warn' ,
82+ 'jsx-a11y/media-has-caption' : 'warn' ,
83+ 'jsx-a11y/mouse-events-have-key-events' : 'warn' ,
84+ 'jsx-a11y/no-access-key' : 'warn' ,
85+ 'jsx-a11y/no-autofocus' : 'warn' ,
86+ 'jsx-a11y/no-distracting-elements' : 'warn' ,
87+ 'jsx-a11y/no-interactive-element-to-noninteractive-role' : 'warn' ,
88+ 'jsx-a11y/no-noninteractive-element-interactions' : 'warn' ,
89+ 'jsx-a11y/no-noninteractive-element-to-interactive-role' : 'warn' ,
90+ 'jsx-a11y/no-noninteractive-tabindex' : 'warn' ,
91+ 'jsx-a11y/no-onchange' : 'warn' ,
92+ 'jsx-a11y/no-redundant-roles' : 'warn' ,
93+ 'jsx-a11y/no-static-element-interactions' : 'warn' ,
94+ 'jsx-a11y/role-has-required-aria-props' : 'warn' ,
95+ 'jsx-a11y/role-supports-aria-props' : 'warn' ,
96+ 'jsx-a11y/scope' : 'warn' ,
97+ 'jsx-a11y/tabindex-no-positive' : 'warn'
6898 }
6999} ;
0 commit comments