2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 77
77
"eslint-find-rules" : " ^4.1.0" ,
78
78
"eslint-plugin-import" : " ^2.29.1" ,
79
79
"eslint-plugin-jsx-a11y" : " ^6.8.0" ,
80
- "eslint-plugin-react" : " ^7.33.2 " ,
80
+ "eslint-plugin-react" : " ^7.34.1 " ,
81
81
"eslint-plugin-react-hooks" : " ^4.6.0" ,
82
82
"in-publish" : " ^2.0.1" ,
83
83
"react" : " >= 0.13.0" ,
88
88
"eslint" : " ^7.32.0 || ^8.2.0" ,
89
89
"eslint-plugin-import" : " ^2.29.1" ,
90
90
"eslint-plugin-jsx-a11y" : " ^6.8.0" ,
91
- "eslint-plugin-react" : " ^7.33.2 " ,
91
+ "eslint-plugin-react" : " ^7.34.1 " ,
92
92
"eslint-plugin-react-hooks" : " ^4.6.0"
93
93
},
94
94
"engines" : {
Original file line number Diff line number Diff line change @@ -46,6 +46,13 @@ module.exports = {
46
46
] ,
47
47
} ] ,
48
48
49
+ // This rule enforces onChange or readonly attribute for checked property of input elements.
50
+ // https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/checked-requires-onchange-or-readonly.md
51
+ 'react/checked-requires-onchange-or-readonly' : [ 'off' , {
52
+ ignoreMissingProperties : false ,
53
+ ignoreExclusiveCheckedAttribute : false
54
+ } ] ,
55
+
49
56
// Prevent missing displayName in a React component definition
50
57
// https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/display-name.md
51
58
'react/display-name' : [ 'off' , { ignoreTranspilerName : false } ] ,
0 commit comments