File tree Expand file tree Collapse file tree 7 files changed +277
-170
lines changed Expand file tree Collapse file tree 7 files changed +277
-170
lines changed Original file line number Diff line number Diff line change 1
1
/* eslint import/no-extraneous-dependencies: 0 */
2
2
3
3
// imports to not let tools report them as unused
4
- import 'eslint-import-resolver-oxc ' ;
4
+ import 'eslint-import-resolver-typescript ' ;
5
5
6
6
import js from '@eslint/js' ;
7
7
import stylistic from '@stylistic/eslint-plugin' ;
@@ -33,7 +33,7 @@ export default [
33
33
importPlugin . flatConfigs . typescript ,
34
34
{
35
35
settings : {
36
- 'import/resolver' : 'oxc ' ,
36
+ 'import/resolver' : 'typescript ' ,
37
37
'import/ignore' : [
38
38
'react-apexcharts' , // ignore react-apexcharts as the default export is broken
39
39
] ,
Original file line number Diff line number Diff line change 94
94
"cross-env" : " 7.0.3" ,
95
95
"esbuild" : " 0.25.1" ,
96
96
"eslint" : " 9.23.0" ,
97
- "eslint-import-resolver-oxc " : " 0.13.1 " ,
97
+ "eslint-import-resolver-typescript " : " 4.3.4 " ,
98
98
"eslint-plugin-custom-rules" : " link:packages/eslint-plugin-custom-rules" ,
99
99
"eslint-plugin-i18next" : " 6.1.1" ,
100
100
"eslint-plugin-import" : " 2.31.0" ,
Original file line number Diff line number Diff line change
1
+ // eslint-disable-next-line import/no-named-as-default -- named `Immutable` is a `type`
1
2
import Immutable from 'seamless-immutable' ;
2
3
3
4
import * as Constants from '../constants/ActionTypes' ;
Original file line number Diff line number Diff line change 1
1
import * as R from 'ramda' ;
2
+ // eslint-disable-next-line import/no-named-as-default -- named `Immutable` is a `type`
2
3
import Immutable from 'seamless-immutable' ;
3
4
4
5
import * as Constants from '../constants/ActionTypes' ;
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import * as R from 'ramda';
3
3
import { useSelector } from 'react-redux' ;
4
4
import { applyMiddleware , createStore } from 'redux' ;
5
5
import { thunk } from 'redux-thunk' ;
6
+ // eslint-disable-next-line import/no-named-as-default -- named `Immutable` is a `type`
6
7
import Immutable from 'seamless-immutable' ;
7
8
8
9
import { storeHelper } from './actions/Schema' ;
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { type Schema } from 'normalizr';
4
4
import * as R from 'ramda' ;
5
5
import { createIntl , createIntlCache } from 'react-intl' ;
6
6
import { type Dispatch } from 'redux' ;
7
+ // eslint-disable-next-line import/no-named-as-default -- named `Immutable` is a `type`
7
8
import Immutable from 'seamless-immutable' ;
8
9
9
10
import { LANG } from '../components/AppIntlProvider' ;
You can’t perform that action at this time.
0 commit comments