File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
14
14
15
15
### Fixed
16
16
- [ ` no-unused-modules ` ] : provide more meaningful error message when no .eslintrc is present ([ #3116 ] , thanks [ @michaelfaith ] )
17
+ - configs: added missing name attribute for eslint config inspector ([ #3151 ] , thanks [ @NishargShah ] )
17
18
18
19
### Changed
19
20
- [ Docs] [ ` extensions ` ] , [ ` order ` ] : improve documentation ([ #3106 ] , thanks [ @Xunnamius ] )
@@ -1169,6 +1170,7 @@ for info on changes for earlier releases.
1169
1170
1170
1171
[ `memo-parser` ] : ./memo-parser/README.md
1171
1172
1173
+ [ #3151 ] : https://github.com/import-js/eslint-plugin-import/pull/3151
1172
1174
[ #3138 ] : https://github.com/import-js/eslint-plugin-import/pull/3138
1173
1175
[ #3125 ] : https://github.com/import-js/eslint-plugin-import/pull/3125
1174
1176
[ #3122 ] : https://github.com/import-js/eslint-plugin-import/pull/3122
@@ -1965,6 +1967,7 @@ for info on changes for earlier releases.
1965
1967
[ @Nfinished ] : https://github.com/Nfinished
1966
1968
[ @nickofthyme ] : https://github.com/nickofthyme
1967
1969
[ @nicolashenry ] : https://github.com/nicolashenry
1970
+ [ @NishargShah ] : https://github.com/NishargShah
1968
1971
[ @noelebrun ] : https://github.com/noelebrun
1969
1972
[ @ntdb ] : https://github.com/ntdb
1970
1973
[ @nwalters512 ] : https://github.com/nwalters512
Original file line number Diff line number Diff line change @@ -96,8 +96,8 @@ export const flatConfigs = {
96
96
warnings : createFlatConfig ( require ( '../config/flat/warnings' ) , 'warnings' ) ,
97
97
98
98
// useful stuff for folks using various environments
99
- react : require ( '../config/flat/react' ) ,
100
- 'react-native' : configs [ 'react-native' ] ,
101
- electron : configs . electron ,
102
- typescript : configs . typescript ,
99
+ react : createFlatConfig ( require ( '../config/flat/react' ) , ' react') ,
100
+ 'react-native' : createFlatConfig ( configs [ 'react-native' ] , 'react-native' ) ,
101
+ electron : createFlatConfig ( configs . electron , 'electron' ) ,
102
+ typescript : createFlatConfig ( configs . typescript , 'typescript' ) ,
103
103
} ;
You can’t perform that action at this time.
0 commit comments