1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -583,17 +583,23 @@ module.exports = {
583
583
// TODO: semver-major, enable
584
584
'react/jsx-no-leaked-render' : 'off' ,
585
585
586
- // https://github.com/jsx-eslint/eslint-plugin-react/blob/66b58dd4864678eb869a7bf434c72ff7ac530eb1/docs/rules/no-object-type-as-default-prop.md
587
586
// https://github.com/jsx-eslint/eslint-plugin-react/blob/66b58dd4864678eb869a7bf434c72ff7ac530eb1/docs/rules/no-object-type-as-default-prop.md
588
587
// TODO: semver-major, enable
589
588
'react/no-object-type-as-default-prop' : 'off' ,
590
589
591
- // https://github.com/jsx-eslint/eslint-plugin-react/blob/66b58dd4864678eb869a7bf434c72ff7ac530eb1/docs/rules/sort-default-props.md
592
590
// https://github.com/jsx-eslint/eslint-plugin-react/blob/66b58dd4864678eb869a7bf434c72ff7ac530eb1/docs/rules/sort-default-props.md
593
591
// TODO: semver-major, enable?
594
592
'react/sort-default-props' : [ 'off' , {
595
593
ignoreCase : false
596
594
} ] ,
595
+
596
+ // https://github.com/jsx-eslint/eslint-plugin-react/blob/9668ee0762acd5c23f53cd3a372e2d8d9563944d/docs/rules/forward-ref-uses-ref.md
597
+ // TODO: semver-major, enable
598
+ 'react/forward-ref-uses-ref' : 'off' ,
599
+
600
+ // https://github.com/jsx-eslint/eslint-plugin-react/blob/9668ee0762acd5c23f53cd3a372e2d8d9563944d/docs/rules/jsx-props-no-spread-multi.md
601
+ // TODO: semver-major, enable
602
+ 'react/jsx-props-no-spread-multi' : 'off' ,
597
603
} ,
598
604
599
605
settings : {
0 commit comments