Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-sanderson committed Nov 6, 2024
1 parent c411c91 commit b0aa9cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/eslint/src/typescriptConfig.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export const typescriptConfig = [
'@typescript-eslint/no-explicit-any': 'off', // Todo: write description
'@typescript-eslint/ban-ts-comment': 'off', // Todo: just temporary, reconsider to remove it
'@typescript-eslint/no-empty-object-type': 'off', // Todo: we shall solve this, this is bad practice
'@typescript-eslint/triple-slash-reference': 'off', // Todo: solve before merge
},
},
];
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-var-requires */
import { configureStore } from 'src/support/tests/configureStore';
import suiteReducer from 'src/reducers/suite/suiteReducer';
import routerReducer from 'src/reducers/suite/routerReducer';
Expand All @@ -10,6 +9,7 @@ import * as routerActions from '../routerActions';

type SuiteState = ReturnType<typeof suiteReducer>;
type RouterState = ReturnType<typeof routerReducer>;

interface InitialState {
suite?: Partial<SuiteState>;
router?: Exclude<RouterState, 'app|url|pathname'>;
Expand Down

0 comments on commit b0aa9cc

Please sign in to comment.