Skip to content

Commit 452b69b

Browse files
chore: wip
1 parent 6fde233 commit 452b69b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/eslint/src/typescriptConfig.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export const typescriptConfig = [
3838
'@typescript-eslint/no-explicit-any': 'off', // Todo: write description
3939
'@typescript-eslint/ban-ts-comment': 'off', // Todo: just temporary, reconsider to remove it
4040
'@typescript-eslint/no-empty-object-type': 'off', // Todo: we shall solve this, this is bad practice
41+
'@typescript-eslint/triple-slash-reference': 'off', // Todo: solve before merge
4142
},
4243
},
4344
];

packages/suite/src/actions/suite/__tests__/routerActions.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable @typescript-eslint/no-var-requires */
21
import { configureStore } from 'src/support/tests/configureStore';
32
import suiteReducer from 'src/reducers/suite/suiteReducer';
43
import routerReducer from 'src/reducers/suite/routerReducer';
@@ -10,6 +9,7 @@ import * as routerActions from '../routerActions';
109

1110
type SuiteState = ReturnType<typeof suiteReducer>;
1211
type RouterState = ReturnType<typeof routerReducer>;
12+
1313
interface InitialState {
1414
suite?: Partial<SuiteState>;
1515
router?: Exclude<RouterState, 'app|url|pathname'>;

0 commit comments

Comments
 (0)