File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
5
5
6
6
## Unreleased
7
7
8
+ ### Fixed
9
+ * configs: restore ` parserOptions ` in legacy configs ([ #3523 ] [ ] @ljharb )
10
+
11
+ [ #3520 ] : https://github.com/jsx-eslint/eslint-plugin-react/issues/3523
12
+
8
13
## [ 7.32.1] - 2023.01.16
9
14
10
15
### Fixed
Original file line number Diff line number Diff line change 3
3
const all = require ( './all' ) ;
4
4
5
5
module . exports = Object . assign ( { } , all , {
6
+ languageOptions : all . languageOptions ,
6
7
rules : {
7
8
'react/display-name' : 2 ,
8
9
'react/jsx-key' : 2 ,
Original file line number Diff line number Diff line change @@ -16,12 +16,15 @@ module.exports = {
16
16
rules : allRules ,
17
17
configs : {
18
18
recommended : Object . assign ( { } , configRecommended , {
19
+ parserOptions : configRecommended . languageOptions . parserOptions ,
19
20
plugins,
20
21
} ) ,
21
22
all : Object . assign ( { } , configAll , {
23
+ parserOptions : configAll . languageOptions . parserOptions ,
22
24
plugins,
23
25
} ) ,
24
26
'jsx-runtime' : Object . assign ( { } , configRuntime , {
27
+ parserOptions : configRuntime . languageOptions . parserOptions ,
25
28
plugins,
26
29
} ) ,
27
30
} ,
You can’t perform that action at this time.
0 commit comments