File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
22
22
* [ ` jsx-no-target-blank ` ] : Allow rel="noreferrer" when ` allowReferrer ` is true ([ #2925 ] [ ] @edemaine )
23
23
* [ ` boolean-prop-naming ` ] : add check for typescript "boolean" type ([ #2930 ] [ ] @vedadeepta )
24
24
* version detection: Add tests that verify versioning works for sibling and child projects ([ #2943 ] [ ] @jcrosetto )
25
+ * [ ` jsx-curly-newline ` ] : Update error messages ([ #2933 ] [ ] @jbrower2 )
25
26
26
27
### Changed
27
28
* [ Docs] [ ` jsx-no-constructed-context-values ` ] [ ] : fix invalid example syntax ([ #2910 ] [ ] @kud )
@@ -30,6 +31,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
30
31
31
32
[ #2943 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2943
32
33
[ #2935 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2935
34
+ [ #2933 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2933
33
35
[ #2930 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2930
34
36
[ #2929 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2929
35
37
[ #2925 ] : https://github.com/yannickcr/eslint-plugin-react/pull/2925
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ module.exports = {
67
67
messages : {
68
68
expectedBefore : 'Expected newline before \'}\'.' ,
69
69
expectedAfter : 'Expected newline after \'{\'.' ,
70
- unexpectedBefore : 'Unexpected newline before \'{ \'.' ,
71
- unexpectedAfter : 'Unexpected newline after \'} \'.'
70
+ unexpectedBefore : 'Unexpected newline before \'} \'.' ,
71
+ unexpectedAfter : 'Unexpected newline after \'{ \'.'
72
72
}
73
73
} ,
74
74
You can’t perform that action at this time.
0 commit comments