File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
20
20
### Changed
21
21
* [ Docs] [ ` jsx-no-constructed-context-values ` ] [ ] : fix invalid example syntax ([ #2910 ] [ ] @kud )
22
22
* [ readme] Replace lists of rules with tables in readme ([ #2908 ] [ ] @motato1 )
23
+ * [ Docs] added missing curly braces ([ #2923 ] [ ] @Muditxofficial )
23
24
25
+ [ #2923 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2923
24
26
[ #2910 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2910
25
27
[ #2908 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2908
26
28
[ #2906 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2906
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ Examples of **incorrect** code for this rule:
60
60
(bar ) => < div> hi< / div>
61
61
}
62
62
/ >
63
+ }>
63
64
< / App>
64
65
65
66
// [2, 2, {indentLogicalExpressions: true}]
@@ -98,6 +99,7 @@ Examples of **correct** code for this rule:
98
99
(bar ) => < div> hi< / div>
99
100
}
100
101
/ >
102
+ }>
101
103
< / App>
102
104
103
105
// [2, 2, {indentLogicalExpressions: true}]
You can’t perform that action at this time.
0 commit comments