File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,6 @@ The rules enabled in this configuration are:
209
209
* [ react/no-string-refs] ( docs/rules/no-string-refs.md )
210
210
* [ react/no-unescaped-entities] ( docs/rules/no-unescaped-entities.md )
211
211
* [ react/no-unknown-property] ( docs/rules/no-unknown-property.md )
212
- * [ react/no-unsafe] ( docs/rules/no-unsafe.md )
213
212
* [ react/prop-types] ( docs/rules/prop-types.md )
214
213
* [ react/react-in-jsx-scope] ( docs/rules/react-in-jsx-scope.md )
215
214
* [ react/require-render-return] ( docs/rules/require-render-return.md )
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ module.exports = {
140
140
'react/no-string-refs' : 2 ,
141
141
'react/no-unescaped-entities' : 2 ,
142
142
'react/no-unknown-property' : 2 ,
143
- 'react/no-unsafe' : 2 ,
143
+ 'react/no-unsafe' : 0 ,
144
144
'react/prop-types' : 2 ,
145
145
'react/react-in-jsx-scope' : 2 ,
146
146
'react/require-render-return' : 2
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ module.exports = {
19
19
docs : {
20
20
description : 'Prevent usage of UNSAFE_ methods' ,
21
21
category : 'Best Practices' ,
22
- recommended : true ,
22
+ recommended : false ,
23
23
url : docsUrl ( 'no-unsafe' )
24
24
} ,
25
25
schema : [ ]
You can’t perform that action at this time.
0 commit comments