chore(deps): update typescript-eslint monorepo to v8 (major) (#1710)

* chore(deps): update typescript-eslint monorepo to v8

* instrument

* react-base16-styling

* Disable react/prop-types

* react-json-tree

* redux-devtools-ui

* inspector-monitor

* react-dock

* log-monitor

* map2tree

* d3-state-visualizer

* test-tab

* rtk-query-monitor

* slider-monitor

* trace-tab

* chart-monitor

* app-core

* utils

* test-tab-demo

* inspector-monitor-demo

* redux-devtools-counter-demo

* redux-devtools-todomvc-demo

* remote

* cli

* react-dock-demo

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
This commit is contained in:
renovate[bot] 2024-08-05 00:38:28 +00:00 committed by GitHub
parent 0462470dca
commit bd463b19ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
84 changed files with 421 additions and 371 deletions

View File

@ -46,6 +46,7 @@
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/no-duplicate-type-constituents": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/prefer-function-type": "off"
"@typescript-eslint/prefer-function-type": "off",
"react/prop-types": "off"
}
}

View File

@ -5,8 +5,8 @@
"@babel/eslint-parser": "^7.24.8",
"@changesets/cli": "^2.27.7",
"@nrwl/nx-cloud": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -33,8 +33,8 @@
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",

View File

@ -46,8 +46,8 @@
},
"devDependencies": {
"@types/ramda": "^0.30.1",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"rimraf": "^6.0.1",

View File

@ -14,9 +14,9 @@ import { tooltip } from 'd3tooltip';
import type { StyleValue } from 'd3tooltip';
export interface Options {
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
state?: {} | null;
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
tree?: Node | {};
rootKeyName: string;

View File

@ -34,8 +34,8 @@
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"d3": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",

View File

@ -42,8 +42,8 @@
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -45,9 +45,9 @@ export function map2tree(
root: unknown,
options: { key?: string; pushMethod?: 'push' | 'unshift' } = {},
tree: Node = { name: options.key || 'state', children: [] },
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
): Node | {} {
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
if (!isPlainObject(root) && root && !(root as { toJS: () => {} }).toJS) {
return {};
}
@ -60,13 +60,13 @@ export function map2tree(
}
mapValues(
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
root && (root as { toJS: () => {} }).toJS
? // eslint-disable-next-line @typescript-eslint/ban-types
? // eslint-disable-next-line @typescript-eslint/no-empty-object-type
(root as { toJS: () => {} }).toJS()
: // eslint-disable-next-line @typescript-eslint/ban-types
: // eslint-disable-next-line @typescript-eslint/no-empty-object-type
(root as {}),
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
(maybeImmutable: { toJS?: () => {} }, key) => {
const value =
maybeImmutable && maybeImmutable.toJS

View File

@ -45,8 +45,8 @@
"@types/color": "^3.0.6",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -126,7 +126,7 @@ const mergeStylings = (
): StylingConfig => {
const keys = Object.keys(defaultStylings);
for (const key in customStylings) {
if (keys.indexOf(key) === -1) keys.push(key);
if (!keys.includes(key)) keys.push(key);
}
return keys.reduce(
@ -241,7 +241,7 @@ export const createStyling: CurriedFunction3<
const customStyling = Object.keys(themeOrStyling).reduce(
(s, key) =>
BASE16_KEYS.indexOf(key) === -1
!BASE16_KEYS.includes(key)
? ((s[key] = (themeOrStyling as StylingConfig)[key]), s)
: s,
{} as StylingConfig,

View File

@ -27,8 +27,8 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",

View File

@ -51,7 +51,7 @@ interface State {
size: number;
}
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export default class App extends Component<{}, State> {
state: State = {
positionIdx: 0,

View File

@ -43,8 +43,8 @@
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -385,7 +385,7 @@ export default class Dock extends Component<Props, State> {
handleDimClick = () => {
if (this.props.dimMode === 'opaque') {
this.props.onVisibleChange && this.props.onVisibleChange(false);
if (this.props.onVisibleChange) this.props.onVisibleChange(false);
}
};
@ -471,7 +471,7 @@ export default class Dock extends Component<Props, State> {
break;
}
this.props.onSizeChange && this.props.onSizeChange(size);
if (this.props.onSizeChange) this.props.onSizeChange(size);
if (!isControlled) {
this.setState({ size });

View File

@ -48,7 +48,7 @@ function prefixProp<Value>(key: string, value: Value) {
export default function autoprefix(style: CSSProperties) {
return Object.keys(style).reduce(
(obj, key) =>
vendorSpecificProperties.indexOf(key) !== -1
vendorSpecificProperties.includes(key)
? {
...obj,
...prefixProp(key, style[key as keyof CSSProperties]),

View File

@ -33,8 +33,8 @@
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",

View File

@ -47,8 +47,8 @@
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -66,7 +66,7 @@ function renderChildNodes(
);
} else {
const { key, value } = entry;
const isCircular = circularCache.indexOf(value) !== -1;
const isCircular = circularCache.includes(value);
childNodes.push(
<JSONNode

View File

@ -2,8 +2,7 @@ import type { SortObjectKeys } from './types.js';
function getLength(type: string, collection: unknown) {
if (type === 'Object') {
// eslint-disable-next-line @typescript-eslint/ban-types
return Object.keys(collection as {}).length;
return Object.keys(collection as object).length;
} else if (type === 'Array') {
return (collection as unknown[]).length;
}

View File

@ -72,8 +72,8 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",

View File

@ -385,7 +385,7 @@ export interface RequestBase {
libConfig?: LibConfig;
actionsById?: string;
computedStates?: string;
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
payload?: {} | string;
liftedState?: Partial<State>;
}

View File

@ -11,7 +11,6 @@ interface State {
selected: string | undefined;
}
// eslint-disable-next-line @typescript-eslint/ban-types
export default class Settings extends Component<Props, State> {
state: State = { selected: undefined };
@ -27,7 +26,7 @@ export default class Settings extends Component<Props, State> {
{ name: 'State Tree', component: StateTree },
];
return (
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
<Tabs<{}>
tabs={tabs as any}
selected={this.state.selected || tabs[0].name}

View File

@ -21,7 +21,7 @@ type Props = DispatchProps & OwnProps;
class ChartTab extends Component<Props> {
node?: HTMLDivElement | null;
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
renderChart?: (nextState?: {} | null | undefined) => void;
shouldComponentUpdate() {
@ -40,7 +40,7 @@ class ChartTab extends Component<Props> {
this.node!.innerHTML = '';
this.createChart(nextProps);
} else if (nextProps.data !== this.props.data) {
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
this.renderChart!(nextProps.data as {} | null | undefined);
}
}
@ -51,7 +51,7 @@ class ChartTab extends Component<Props> {
createChart(props: Props) {
this.renderChart = tree(this.node!, this.getChartTheme(props.theme));
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
this.renderChart(props.data as {} | null | undefined);
}

View File

@ -19,7 +19,7 @@ export const StyledContainer = styled.div`
padding: 2px 3px;
border-radius: 3px;
position: relative;
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base07};
display: inline-block;
}
@ -44,7 +44,7 @@ export const StyledContainer = styled.div`
.jsondiffpatch-modified .jsondiffpatch-right-value:before {
vertical-align: top;
padding: 2px;
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base0E};
content: ' => ';
}
@ -52,7 +52,7 @@ export const StyledContainer = styled.div`
.jsondiffpatch-added .jsondiffpatch-value pre,
.jsondiffpatch-modified .jsondiffpatch-right-value pre,
.jsondiffpatch-textdiff-added {
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
background: ${(props: ThemedStyledProps<{}, Theme>) =>
effects.color(props.theme.base0B, 'alpha', 0.2)};
}
@ -60,7 +60,7 @@ export const StyledContainer = styled.div`
.jsondiffpatch-deleted pre,
.jsondiffpatch-modified .jsondiffpatch-left-value pre,
.jsondiffpatch-textdiff-deleted {
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
background: ${(props: ThemedStyledProps<{}, Theme>) =>
effects.color(props.theme.base08, 'alpha', 0.2)};
text-decoration: line-through;
@ -129,13 +129,13 @@ export const StyledContainer = styled.div`
padding: 2px 0;
padding-right: 5px;
vertical-align: top;
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base0D};
}
.jsondiffpatch-property-name:after {
content: ': ';
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base07};
}
@ -172,7 +172,7 @@ export const StyledContainer = styled.div`
}
.jsondiffpatch-value pre:after {
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
color: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base07};
content: ',';
}
@ -196,7 +196,7 @@ export const StyledContainer = styled.div`
.jsondiffpatch-moved .jsondiffpatch-moved-destination {
display: inline-block;
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
background: ${(props: ThemedStyledProps<{}, Theme>) => props.theme.base0A};
}

View File

@ -94,7 +94,6 @@ function updateState(
const actionsById = request.actionsById;
if (actionsById) {
payload = {
// eslint-disable-next-line @typescript-eslint/ban-types
...payload,
actionsById: parseJSON(actionsById, serialize),
computedStates: parseJSON(request.computedStates, serialize),

View File

@ -20,7 +20,7 @@ export default function commitExcessActions(liftedState: State, n = 1) {
}
liftedState.skippedActionIds = liftedState.skippedActionIds.filter(
(id) => idsToDelete.indexOf(id) === -1,
(id) => !idsToDelete.includes(id),
);
liftedState.stagedActionIds = [
0,

View File

@ -68,8 +68,8 @@
"@types/socketcluster-client": "^19.1.0",
"@types/styled-components": "^5.1.34",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",

View File

@ -54,8 +54,8 @@
"@babel/preset-typescript": "^7.24.7",
"@redux-devtools/core": "^4.0.0",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",

View File

@ -27,14 +27,14 @@ export interface Props<S, A extends Action<string>>
class Chart<S, A extends Action<string>> extends Component<Props<S, A>> {
divRef = createRef<HTMLDivElement>();
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
renderChart?: (state?: {} | null | undefined) => void;
componentDidMount() {
const { select, state, defaultIsVisible } = this.props;
this.renderChart = tree(this.divRef.current!, this.props);
if (defaultIsVisible) {
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
this.renderChart(select(state!) as {} | null | undefined);
}
}
@ -43,7 +43,7 @@ class Chart<S, A extends Action<string>> extends Component<Props<S, A>> {
const { state, select, monitorState } = nextProps;
if (monitorState.isVisible !== false) {
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
this.renderChart!(select(state!) as {} | null | undefined);
}
}

View File

@ -84,8 +84,8 @@
"@types/styled-components": "^5.1.34",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -4,7 +4,7 @@ import knex from 'knex';
import type { Knex } from 'knex';
import { AGServer } from 'socketcluster-server';
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
type KnexFunction = <TRecord extends {} = any, TResult = unknown[]>(
config: Knex.Config | string,
) => Knex<TRecord, TResult>;

View File

@ -56,8 +56,8 @@
"@redux-devtools/core": "^4.0.0",
"@types/parse-key": "^0.2.2",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",

View File

@ -39,8 +39,8 @@
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"redux": "^4.2.1",

View File

@ -39,8 +39,8 @@
"@types/redux-logger": "3.0.12",
"@types/styled-components": "^5.1.34",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",

View File

@ -7,10 +7,10 @@ export interface Options {
export default function getOptions(location: { search: string }) {
return {
useExtension: location.search.indexOf('ext') !== -1,
supportImmutable: location.search.indexOf('immutable') !== -1,
useExtension: location.search.includes('ext'),
supportImmutable: location.search.includes('immutable'),
theme: getTheme(location),
dark: location.search.indexOf('dark') !== -1,
dark: location.search.includes('dark'),
};
}

View File

@ -70,8 +70,8 @@
"@types/jsan": "^3.1.5",
"@types/object-path": "^0.11.4",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -14,7 +14,7 @@ export const fromPath = (path: (string | number)[]) =>
function getState<S>(
s: { state: S; error?: string } | undefined,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
defaultValue?: {},
) {
if (!s) return defaultValue;
@ -25,7 +25,7 @@ export function compare<S>(
s1: { state: S; error?: string } | undefined,
s2: { state: S; error?: string },
cb: (value: { path: string; curState: number | string | undefined }) => void,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
defaultValue?: {},
) {
const paths: string[] = []; // Already processed
@ -36,9 +36,8 @@ export function compare<S>(
let path = fromPath(event.newPath);
if (event.type === 'remove-item' || event.type === 'move-item') {
if (paths.length && paths.indexOf(path) !== -1) return;
if (paths.length && paths.includes(path)) return;
paths.push(path);
// eslint-disable-next-line @typescript-eslint/ban-types
const v = objectPath.get(s2.state as unknown as object, event.newPath);
curState = v.length;
path += '.length';

View File

@ -58,8 +58,8 @@
"@types/path-browserify": "^1.0.2",
"@types/react": "^18.3.3",
"@types/source-map": "0.5.2",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -1,6 +1,6 @@
import StackFrame from './react-error-overlay/utils/stack-frame';
const isFF = navigator.userAgent.indexOf('Firefox') !== -1;
const isFF = navigator.userAgent.includes('Firefox');
function openResource(
fileName: string,

View File

@ -76,7 +76,7 @@ class StackFrame extends Component<Props, State> {
return null;
}
// e.g. "/path-to-my-app/webpack/bootstrap eaddeb46b67d75e4dfc1"
const isInternalWebpackBootstrapCode = fileName.trim().indexOf(' ') !== -1;
const isInternalWebpackBootstrapCode = fileName.trim().includes(' ');
if (isInternalWebpackBootstrapCode) {
return null;
}

View File

@ -83,7 +83,7 @@ function StackFrameCodeBlock(props: StackFrameCodeBlockPropsType) {
if (text == null) {
continue;
}
if (text.indexOf(` ${lineNum} |`) === -1) {
if (!text.includes(` ${lineNum} |`)) {
continue;
}
// $FlowFixMe

View File

@ -88,7 +88,9 @@ export function extractSourceMapUrl(
match = next;
}
if (!(match && match[1])) {
return Promise.reject(`Cannot find a source map directive for ${fileUri}.`);
return Promise.reject(
new Error(`Cannot find a source map directive for ${fileUri}.`),
);
}
return Promise.resolve(match[1].toString());
}

View File

@ -51,8 +51,7 @@ function getStackFrames(
return enhancedFrames.filter(
({ functionName, fileName }) =>
(functionName == null ||
functionName.indexOf('__stack_frame_overlay_proxy_console__') ===
-1) &&
!functionName.includes('__stack_frame_overlay_proxy_console__')) &&
!toExclude.test(fileName!),
);
});

View File

@ -12,9 +12,9 @@ function isInternalFile(
return (
sourceFileName == null ||
sourceFileName === '' ||
sourceFileName.indexOf('/~/') !== -1 ||
sourceFileName.indexOf('/node_modules/') !== -1 ||
sourceFileName.trim().indexOf(' ') !== -1 ||
sourceFileName.includes('/~/') ||
sourceFileName.includes('/node_modules/') ||
sourceFileName.trim().includes(' ') ||
fileName == null ||
fileName === ''
);

View File

@ -30,7 +30,7 @@ async function map(
if (fileName == null) {
return;
}
if (files.indexOf(fileName) !== -1) {
if (files.includes(fileName)) {
return;
}
files.push(fileName);

View File

@ -50,10 +50,10 @@ function parseStack(stack: string[]): StackFrame[] {
);
} else {
// Strip eval, we don't care about it
if (e.indexOf('(eval ') !== -1) {
if (e.includes('(eval ')) {
e = e.replace(/(\(eval at [^()]*)|(\),.*$)/g, '');
}
if (e.indexOf('(at ') !== -1) {
if (e.includes('(at ')) {
e = e.replace(/\(at /, '(');
}
const data = e.trim().split(/\s+/g).slice(1);

View File

@ -36,8 +36,8 @@
"@types/react-dom": "^18.3.0",
"@types/redux-logger": "3.0.12",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",

View File

@ -7,10 +7,10 @@ export interface Options {
export default function getOptions(location: { search: string }) {
return {
useExtension: location.search.indexOf('ext') !== -1,
supportImmutable: location.search.indexOf('immutable') !== -1,
useExtension: location.search.includes('ext'),
supportImmutable: location.search.includes('immutable'),
theme: getTheme(location),
dark: location.search.indexOf('dark') !== -1,
dark: location.search.includes('dark'),
};
}

View File

@ -65,8 +65,8 @@
"@types/hex-rgba": "^1.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",

View File

@ -136,11 +136,10 @@ export default function ActionList<A extends Action<string>>({
const lowerSearchValue = searchValue && searchValue.toLowerCase();
const filteredActionIds = searchValue
? actionIds.filter(
(id) =>
actions[id].action.type
.toLowerCase()
.indexOf(lowerSearchValue as string) !== -1,
? actionIds.filter((id) =>
actions[id].action.type
.toLowerCase()
.includes(lowerSearchValue as string),
)
: actionIds;
@ -218,7 +217,7 @@ export default function ActionList<A extends Action<string>>({
onJumpClick={() => onJumpToState(actionId)}
onCommitClick={() => onCommit()}
hideActionButtons={hideActionButtons}
isSkipped={skippedActionIds.indexOf(actionId) !== -1}
isSkipped={skippedActionIds.includes(actionId)}
/>
</SortableItem>
))}

View File

@ -23,8 +23,7 @@ function getShortTypeString(val: any, diff: boolean | undefined) {
} else if (val === undefined) {
return 'undef';
} else if (typeof val === 'object') {
// eslint-disable-next-line @typescript-eslint/ban-types
return Object.keys(val as {}).length > 0 ? '{…}' : '{}';
return Object.keys(val as object).length > 0 ? '{…}' : '{}';
} else if (typeof val === 'function') {
return 'fn';
} else if (typeof val === 'string') {
@ -43,8 +42,7 @@ function getText(
isDiff: boolean | undefined,
) {
if (type === 'Object') {
// eslint-disable-next-line @typescript-eslint/ban-types
const keys = Object.keys(data as {});
const keys = Object.keys(data as object);
if (!isWideLayout) return keys.length ? '{…}' : '{}';
const str = keys

View File

@ -54,8 +54,8 @@
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -137,7 +137,7 @@ export const ActionCreators = {
action: A,
trace?: ((action: A) => string | undefined) | boolean,
traceLimit?: number,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
toExcludeFromTrace?: Function,
) {
if (!isPlainObject(action)) {
@ -281,7 +281,6 @@ function computeWithTryCatch<S, A extends Action<string>>(
try {
nextState = reducer(state, action);
} catch (err) {
// eslint-disable-next-line @typescript-eslint/ban-types
nextError = (err as object).toString();
if (isChrome) {
// In Chrome, rethrowing provides better source map support
@ -346,7 +345,7 @@ function recomputeStates<S, A extends Action<string>>(
const previousEntry = nextComputedStates[i - 1];
const previousState = previousEntry ? previousEntry.state : committedState;
const shouldSkip = skippedActionIds.indexOf(actionId) > -1;
const shouldSkip = skippedActionIds.includes(actionId);
let entry;
if (shouldSkip) {
entry = previousEntry;
@ -378,7 +377,7 @@ function liftAction<A extends Action<string>>(
action: A,
trace?: ((action: A) => string | undefined) | boolean,
traceLimit?: number,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
toExcludeFromTrace?: Function,
) {
return ActionCreators.performAction(
@ -477,7 +476,7 @@ function liftReducerWith<
}
skippedActionIds = skippedActionIds.filter(
(id) => idsToDelete.indexOf(id) === -1,
(id) => !idsToDelete.includes(id),
);
stagedActionIds = [0, ...stagedActionIds.slice(excess + 1)];
committedState = computedStates[excess].state;

View File

@ -57,8 +57,8 @@
"@babel/preset-typescript": "^7.24.7",
"@redux-devtools/core": "^4.0.0",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",

View File

@ -164,7 +164,7 @@ class LogMonitor<S, A extends Action<string>> extends PureComponent<
const { skippedActionIds } = this.props;
const start = Math.min(consecutiveToggleStartId, id);
const end = Math.max(consecutiveToggleStartId, id);
const active = skippedActionIds.indexOf(consecutiveToggleStartId) > -1;
const active = skippedActionIds.includes(consecutiveToggleStartId);
this.props.dispatch(setActionsActive(start, end + 1, active));
this.props.dispatch(startConsecutiveToggle(null));
} else if (id > 0) {

View File

@ -60,7 +60,7 @@ export default class LogMonitorEntryList<
actionId={actionId}
state={state}
previousState={previousState}
collapsed={skippedActionIds.indexOf(actionId) > -1}
collapsed={skippedActionIds.includes(actionId)}
inFuture={i > currentStateIndex}
selected={consecutiveToggleStartId === i}
error={error}

View File

@ -59,8 +59,8 @@
"@types/node": "^20.14.11",
"@types/rn-host-detect": "^1.2.2",
"@types/socketcluster-client": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"redux": "^4.2.1",

View File

@ -7,7 +7,7 @@ export default function configureStore<
MonitorState,
MonitorAction extends Action<string>,
>(
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
next: StoreEnhancerStoreCreator<{}, unknown>,
subscriber: Reducer<MonitorState, MonitorAction>,
options: Options<S, A, MonitorState, MonitorAction>,

View File

@ -160,7 +160,7 @@ interface ActionMessage {
interface DispatchMessage<S, A extends Action<string>> {
readonly type: 'DISPATCH';
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
readonly action: LiftedAction<S, A, {}>;
}
@ -175,7 +175,7 @@ type Message<S, A extends Action<string>> =
| DispatchMessage<S, A>;
class DevToolsEnhancer<S, A extends Action<string>> {
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
store!: EnhancedStore<S, A, {}>;
filters: LocalFilter | undefined;
instanceId?: string;
@ -309,7 +309,7 @@ class DevToolsEnhancer<S, A extends Action<string>> {
) {
this.store.liftedStore.dispatch({
type: 'IMPORT_STATE',
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
nextLiftedState: parse(message.state) as LiftedState<S, A, {}>,
});
} else if (message.type === 'UPDATE') {
@ -483,7 +483,7 @@ class DevToolsEnhancer<S, A extends Action<string>> {
return false;
};
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
monitorReducer = (state = {}, action: LiftedAction<S, A, {}>) => {
this.lastAction = action.type;
if (!this.started && this.sendOnError === 2 && this.store.liftedStore)
@ -492,26 +492,26 @@ class DevToolsEnhancer<S, A extends Action<string>> {
if (
this.startOn &&
!this.started &&
this.startOn.indexOf((action as PerformAction<A>).action.type) !== -1
this.startOn.includes((action as PerformAction<A>).action.type)
)
async(this.start);
else if (
this.stopOn &&
this.started &&
this.stopOn.indexOf((action as PerformAction<A>).action.type) !== -1
this.stopOn.includes((action as PerformAction<A>).action.type)
)
async(this.stop);
else if (
this.sendOn &&
!this.started &&
this.sendOn.indexOf((action as PerformAction<A>).action.type) !== -1
this.sendOn.includes((action as PerformAction<A>).action.type)
)
async(this.send);
}
return state;
};
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
handleChange(state: S, liftedState: LiftedState<S, A, {}>, maxAge: number) {
if (this.checkForReducerErrors(liftedState)) return;

View File

@ -39,8 +39,8 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",

View File

@ -72,8 +72,8 @@
"@types/hex-rgba": "^1.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -45,8 +45,7 @@ function getText(
isDiff: boolean | undefined,
) {
if (type === 'Object') {
// eslint-disable-next-line @typescript-eslint/ban-types
const keys = Object.keys(data as {});
const keys = Object.keys(data as object);
if (!previewContent) return keys.length ? '{…}' : '{}';
const str = keys

View File

@ -49,8 +49,8 @@
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@types/jsan": "^3.1.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -38,8 +38,8 @@
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",

View File

@ -8,8 +8,8 @@ interface Props {
}
const Root: ComponentType<Props> =
process.env.NODE_ENV === 'production'
? // eslint-disable-next-line @typescript-eslint/no-var-requires
? // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./Root.prod').default
: // eslint-disable-next-line @typescript-eslint/no-var-requires
: // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./Root.dev').default;
export default Root;

View File

@ -6,8 +6,8 @@ const configureStore: (
initialState?: PreloadedState<TodoState>,
) => Store<TodoState, TodoAction> =
process.env.NODE_ENV === 'production'
? // eslint-disable-next-line @typescript-eslint/no-var-requires
? // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./configureStore.prod').default
: // eslint-disable-next-line @typescript-eslint/no-var-requires
: // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./configureStore.dev').default;
export default configureStore;

View File

@ -46,8 +46,8 @@
"@redux-devtools/core": "^4.0.0",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",

View File

@ -21,7 +21,7 @@ import SliderButton from './SliderButton';
const { reset, jumpToAction } = ActionCreators;
interface ExternalProps<S, A extends Action<string>> {
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
dispatch: Dispatch<LiftedAction<S, A, {}>>;
preserveScrollTop: boolean;
select: (state: S) => unknown;
@ -37,9 +37,9 @@ interface DefaultProps {
keyboardEnabled: boolean;
}
interface SliderMonitorProps<S, A extends Action<string>> // eslint-disable-next-line @typescript-eslint/ban-types
interface SliderMonitorProps<S, A extends Action<string>> // eslint-disable-next-line @typescript-eslint/no-empty-object-type
extends LiftedState<S, A, {}> {
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
dispatch: Dispatch<LiftedAction<S, A, {}>>;
preserveScrollTop: boolean;
select: (state: S) => unknown;
@ -376,10 +376,10 @@ export default SliderMonitor as unknown as React.ComponentType<
> & {
update(
monitorProps: ExternalProps<unknown, Action<string>>,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
state: {} | undefined,
action: Action<string>,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
): {};
defaultProps: DefaultProps;
};

View File

@ -79,8 +79,8 @@
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"csstype": "^3.1.3",
"eslint": "^8.57.0",

View File

@ -8,7 +8,7 @@ export const MainContainerWrapper = styled.div`
width: 100%;
flex-flow: column nowrap;
overflow: auto;
${/* eslint-disable-next-line @typescript-eslint/ban-types */ ''}
${/* eslint-disable-next-line @typescript-eslint/no-empty-object-type */ ''}
background-color: ${(props: ThemedStyledProps<{}, Theme>) =>
color(props.theme.base00, 'lighten', 0.03)};
color: ${(props) => props.theme.base07};

View File

@ -1,7 +1,7 @@
import { css, ThemedStyledProps } from 'styled-components';
import { Theme } from '../../themes/default';
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export default ({ theme }: ThemedStyledProps<{}, Theme>) => css`
padding: 10px;
line-height: 1.846;

View File

@ -1,7 +1,7 @@
import { css, ThemedStyledProps } from 'styled-components';
import { Theme } from '../../themes/default';
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export const containerStyle = ({ theme }: ThemedStyledProps<{}, Theme>) => css`
display: flex;
align-items: center;

View File

@ -12,7 +12,7 @@ import { ThemeFromProvider } from './theme';
type StyleFunction<
C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
O extends object = {},
> = InterpolationFunction<
ThemedStyledProps<StyledComponentPropsWithRef<C> & O, Theme>
@ -20,7 +20,7 @@ type StyleFunction<
interface StylesObject<
C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
O extends object = {},
> {
[type: string]: StyleFunction<C, O>;
@ -28,13 +28,13 @@ interface StylesObject<
type Styles<
C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
O extends object = {},
> = StylesObject<C, O> | StyleFunction<C, O>;
function isStylesObject<
C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
O extends object = {},
>(styles: Styles<C>): styles is StylesObject<C, O> {
return typeof styles === 'object';
@ -42,7 +42,7 @@ function isStylesObject<
const getStyle = <
C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
O extends object = {},
>(
styles: Styles<C, O>,
@ -57,7 +57,7 @@ function isThemeFromProvider(
export default function createStyledComponent<
C extends keyof JSX.IntrinsicElements | React.ComponentType<any>,
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
O extends object = {},
>(
styles: Styles<C, O>,

View File

@ -53,8 +53,8 @@
"@types/jsan": "^3.1.5",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"rimraf": "^6.0.1",

View File

@ -15,7 +15,6 @@ export interface ActionCreatorObject {
readonly args: readonly string[];
}
// eslint-disable-next-line @typescript-eslint/ban-types
function flatTree(
obj: { [key: string]: ActionCreator<Action<string>> },
namespace = '',
@ -217,9 +216,9 @@ export function getSeralizeParameter(
}
export function getStackTrace(
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
config: { trace?: () => {}; traceLimit: number },
// eslint-disable-next-line @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
toExcludeFromTrace?: Function | undefined,
) {
if (!config.trace) return undefined;

View File

@ -37,8 +37,8 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",

View File

@ -8,8 +8,8 @@ interface Props {
}
const Root: ComponentType<Props> =
process.env.NODE_ENV === 'production'
? // eslint-disable-next-line @typescript-eslint/no-var-requires
? // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./Root.prod').default
: // eslint-disable-next-line @typescript-eslint/no-var-requires
: // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./Root.dev').default;
export default Root;

View File

@ -28,7 +28,7 @@ export default function configureStore(
if (module.hot) {
module.hot.accept('../reducers', () =>
// eslint-disable-next-line @typescript-eslint/no-var-requires
// eslint-disable-next-line @typescript-eslint/no-require-imports
store.replaceReducer(require('../reducers').default as Reducer),
);
}

View File

@ -6,8 +6,8 @@ const configureStore: (
initialState?: PreloadedState<CounterState>,
) => Store<CounterState, CounterAction> =
process.env.NODE_ENV === 'production'
? // eslint-disable-next-line @typescript-eslint/no-var-requires
? // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./configureStore.prod').default
: // eslint-disable-next-line @typescript-eslint/no-var-requires
: // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./configureStore.dev').default;
export default configureStore;

View File

@ -50,8 +50,8 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",

View File

@ -8,8 +8,8 @@ interface Props {
}
const Root: ComponentType<Props> =
process.env.NODE_ENV === 'production'
? // eslint-disable-next-line @typescript-eslint/no-var-requires
? // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./Root.prod').default
: // eslint-disable-next-line @typescript-eslint/no-var-requires
: // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./Root.dev').default;
export default Root;

View File

@ -6,8 +6,8 @@ const configureStore: (
initialState?: PreloadedState<TodoState>,
) => Store<TodoState, TodoAction> =
process.env.NODE_ENV === 'production'
? // eslint-disable-next-line @typescript-eslint/no-var-requires
? // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./configureStore.prod').default
: // eslint-disable-next-line @typescript-eslint/no-var-requires
: // eslint-disable-next-line @typescript-eslint/no-require-imports
require('./configureStore.dev').default;
export default configureStore;

View File

@ -57,8 +57,8 @@
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",

View File

@ -21,11 +21,11 @@ importers:
specifier: ^19.0.0
version: 19.0.0
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -34,7 +34,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -182,7 +182,7 @@ importers:
version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.9.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.35.0)(eslint@8.57.0)
eslint-plugin-import:
specifier: ^2.29.1
version: 2.29.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)
version: 2.29.1(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)
eslint-plugin-jsx-a11y:
specifier: ^6.9.0
version: 6.9.0(eslint@8.57.0)
@ -251,11 +251,11 @@ importers:
specifier: ^0.30.1
version: 0.30.1
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -291,11 +291,11 @@ importers:
specifier: ^20.14.11
version: 20.14.11
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -336,11 +336,11 @@ importers:
specifier: ^7.4.3
version: 7.4.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
d3:
specifier: ^7.9.0
version: 7.9.0
@ -370,11 +370,11 @@ importers:
specifier: ^4.17.12
version: 4.17.12
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -383,7 +383,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
immutable:
specifier: ^4.3.6
version: 4.3.6
@ -425,11 +425,11 @@ importers:
specifier: ^4.17.12
version: 4.17.12
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -438,7 +438,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@20.14.11)(ts-node@10.9.2)
@ -474,11 +474,11 @@ importers:
specifier: ^18.3.0
version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -487,7 +487,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -565,11 +565,11 @@ importers:
specifier: ^5.1.34
version: 5.1.34
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -629,11 +629,11 @@ importers:
specifier: ^18.3.0
version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -642,7 +642,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -708,11 +708,11 @@ importers:
specifier: ^18.3.0
version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -799,11 +799,11 @@ importers:
specifier: ^18.3.3
version: 18.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -812,7 +812,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -932,11 +932,11 @@ importers:
specifier: ^1.18.5
version: 1.18.5
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -1116,11 +1116,11 @@ importers:
specifier: ^5.1.34
version: 5.1.34
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
cross-env:
specifier: ^7.0.3
version: 7.0.3
@ -1135,7 +1135,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -1222,11 +1222,11 @@ importers:
specifier: ^18.3.3
version: 18.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -1379,11 +1379,11 @@ importers:
specifier: ^10.0.0
version: 10.0.0
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -1392,7 +1392,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@20.14.11)(ts-node@10.9.2)
@ -1458,11 +1458,11 @@ importers:
specifier: ^18.3.3
version: 18.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -1516,11 +1516,11 @@ importers:
specifier: ^7.24.7
version: 7.24.7(@babel/core@7.24.9)
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -1628,11 +1628,11 @@ importers:
specifier: ^18.3.3
version: 18.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -1743,11 +1743,11 @@ importers:
specifier: ^18.3.3
version: 18.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -1756,7 +1756,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -1873,11 +1873,11 @@ importers:
specifier: ^1.18.5
version: 1.18.5
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -2006,11 +2006,11 @@ importers:
specifier: 0.5.2
version: 0.5.2
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -2019,7 +2019,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -2130,11 +2130,11 @@ importers:
specifier: ^1.18.5
version: 1.18.5
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -2212,11 +2212,11 @@ importers:
specifier: ^20.14.11
version: 20.14.11
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -2225,7 +2225,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@20.14.11)(ts-node@10.9.2)
@ -2291,11 +2291,11 @@ importers:
specifier: ^18.3.3
version: 18.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -2373,11 +2373,11 @@ importers:
specifier: ^19.1.0
version: 19.1.0
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -2482,11 +2482,11 @@ importers:
specifier: ^18.3.3
version: 18.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -2495,7 +2495,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -2615,11 +2615,11 @@ importers:
specifier: ^5.1.34
version: 5.1.34
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -2703,11 +2703,11 @@ importers:
specifier: ^3.1.5
version: 3.1.5
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -2716,7 +2716,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
immutable:
specifier: ^4.3.6
version: 4.3.6
@ -2779,11 +2779,11 @@ importers:
specifier: ^18.3.3
version: 18.3.3
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -2876,11 +2876,11 @@ importers:
specifier: ^1.18.5
version: 1.18.5
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -3036,11 +3036,11 @@ importers:
specifier: ^5.1.34
version: 5.1.34
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -3055,7 +3055,7 @@ importers:
version: 9.1.0(eslint@8.57.0)
eslint-plugin-jest:
specifier: ^28.6.0
version: 28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
version: 28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3)
eslint-plugin-react:
specifier: ^7.35.0
version: 7.35.0(eslint@8.57.0)
@ -3175,11 +3175,11 @@ importers:
specifier: ^20.14.11
version: 20.14.11
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
eslint:
specifier: ^8.57.0
version: 8.57.0
@ -3245,11 +3245,11 @@ importers:
specifier: ^1.18.5
version: 1.18.5
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -3345,11 +3345,11 @@ importers:
specifier: ^1.18.5
version: 1.18.5
'@typescript-eslint/eslint-plugin':
specifier: ^7.16.1
version: 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser':
specifier: ^7.16.1
version: 7.16.1(eslint@8.57.0)(typescript@5.5.3)
specifier: ^8.0.0
version: 8.0.0(eslint@8.57.0)(typescript@5.5.3)
babel-loader:
specifier: ^9.1.3
version: 9.1.3(@babel/core@7.24.9)(webpack@5.93.0)
@ -9669,23 +9669,23 @@ packages:
'@types/node': 20.14.11
optional: true
/@typescript-eslint/eslint-plugin@7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3):
resolution: {integrity: sha512-SxdPak/5bO0EnGktV05+Hq8oatjAYVY3Zh2bye9pGZy6+jwyR3LG3YKkV4YatlsgqXP28BTeVm9pqwJM96vf2A==}
engines: {node: ^18.18.0 || >=20.0.0}
/@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3):
resolution: {integrity: sha512-STIZdwEQRXAHvNUS6ILDf5z3u95Gc8jzywunxSNqX00OooIemaaNIA0vEgynJlycL5AjabYLLrIyHd4iazyvtg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
eslint: ^8.56.0
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@eslint-community/regexpp': 4.11.0
'@typescript-eslint/parser': 7.16.1(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/scope-manager': 7.16.1
'@typescript-eslint/type-utils': 7.16.1(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/utils': 7.16.1(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 7.16.1
'@typescript-eslint/parser': 8.0.0(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/scope-manager': 8.0.0
'@typescript-eslint/type-utils': 8.0.0(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/utils': 8.0.0(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 8.0.0
eslint: 8.57.0
graphemer: 1.4.0
ignore: 5.3.1
@ -9696,20 +9696,20 @@ packages:
- supports-color
dev: true
/@typescript-eslint/parser@7.16.1(eslint@8.57.0)(typescript@5.5.3):
resolution: {integrity: sha512-u+1Qx86jfGQ5i4JjK33/FnawZRpsLxRnKzGE6EABZ40KxVT/vWsiZFEBBHjFOljmmV3MBYOHEKi0Jm9hbAOClA==}
engines: {node: ^18.18.0 || >=20.0.0}
/@typescript-eslint/parser@8.0.0(eslint@8.57.0)(typescript@5.5.3):
resolution: {integrity: sha512-pS1hdZ+vnrpDIxuFXYQpLTILglTjSYJ9MbetZctrUawogUsPdz31DIIRZ9+rab0LhYNTsk88w4fIzVheiTbWOQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.56.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/scope-manager': 7.16.1
'@typescript-eslint/types': 7.16.1
'@typescript-eslint/typescript-estree': 7.16.1(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 7.16.1
'@typescript-eslint/scope-manager': 8.0.0
'@typescript-eslint/types': 8.0.0
'@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.3)
'@typescript-eslint/visitor-keys': 8.0.0
debug: 4.3.5(supports-color@5.5.0)
eslint: 8.57.0
typescript: 5.5.3
@ -9733,23 +9733,30 @@ packages:
'@typescript-eslint/visitor-keys': 7.16.1
dev: true
/@typescript-eslint/type-utils@7.16.1(eslint@8.57.0)(typescript@5.5.3):
resolution: {integrity: sha512-rbu/H2MWXN4SkjIIyWcmYBjlp55VT+1G3duFOIukTNFxr9PI35pLc2ydwAfejCEitCv4uztA07q0QWanOHC7dA==}
engines: {node: ^18.18.0 || >=20.0.0}
/@typescript-eslint/scope-manager@8.0.0:
resolution: {integrity: sha512-V0aa9Csx/ZWWv2IPgTfY7T4agYwJyILESu/PVqFtTFz9RIS823mAze+NbnBI8xiwdX3iqeQbcTYlvB04G9wyQw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
'@typescript-eslint/types': 8.0.0
'@typescript-eslint/visitor-keys': 8.0.0
dev: true
/@typescript-eslint/type-utils@8.0.0(eslint@8.57.0)(typescript@5.5.3):
resolution: {integrity: sha512-mJAFP2mZLTBwAn5WI4PMakpywfWFH5nQZezUQdSKV23Pqo6o9iShQg1hP2+0hJJXP2LnZkWPphdIq4juYYwCeg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.56.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/typescript-estree': 7.16.1(typescript@5.5.3)
'@typescript-eslint/utils': 7.16.1(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.3)
'@typescript-eslint/utils': 8.0.0(eslint@8.57.0)(typescript@5.5.3)
debug: 4.3.5(supports-color@5.5.0)
eslint: 8.57.0
ts-api-utils: 1.3.0(typescript@5.5.3)
typescript: 5.5.3
transitivePeerDependencies:
- eslint
- supports-color
dev: true
@ -9763,6 +9770,11 @@ packages:
engines: {node: ^18.18.0 || >=20.0.0}
dev: true
/@typescript-eslint/types@8.0.0:
resolution: {integrity: sha512-wgdSGs9BTMWQ7ooeHtu5quddKKs5Z5dS+fHLbrQI+ID0XWJLODGMHRfhwImiHoeO2S5Wir2yXuadJN6/l4JRxw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dev: true
/@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@ -9806,6 +9818,28 @@ packages:
- supports-color
dev: true
/@typescript-eslint/typescript-estree@8.0.0(typescript@5.5.3):
resolution: {integrity: sha512-5b97WpKMX+Y43YKi4zVcCVLtK5F98dFls3Oxui8LbnmRsseKenbbDinmvxrWegKDMmlkIq/XHuyy0UGLtpCDKg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/types': 8.0.0
'@typescript-eslint/visitor-keys': 8.0.0
debug: 4.3.5(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
ts-api-utils: 1.3.0(typescript@5.5.3)
typescript: 5.5.3
transitivePeerDependencies:
- supports-color
dev: true
/@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.3):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@ -9842,6 +9876,22 @@ packages:
- typescript
dev: true
/@typescript-eslint/utils@8.0.0(eslint@8.57.0)(typescript@5.5.3):
resolution: {integrity: sha512-k/oS/A/3QeGLRvOWCg6/9rATJL5rec7/5s1YmdS0ZU6LHveJyGFwBvLhSRBv6i9xaj7etmosp+l+ViN1I9Aj/Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@typescript-eslint/scope-manager': 8.0.0
'@typescript-eslint/types': 8.0.0
'@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.3)
eslint: 8.57.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
/@typescript-eslint/visitor-keys@5.62.0:
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@ -9858,6 +9908,14 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
/@typescript-eslint/visitor-keys@8.0.0:
resolution: {integrity: sha512-oN0K4nkHuOyF3PVMyETbpP5zp6wfyOvm7tWhTMfoqxSSsPmJIh6JNASuZDlODE8eE+0EB9uar+6+vxr9DBTYOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dependencies:
'@typescript-eslint/types': 8.0.0
eslint-visitor-keys: 3.4.3
dev: true
/@ungap/structured-clone@1.2.0:
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
dev: true
@ -12739,7 +12797,7 @@ packages:
dependencies:
confusing-browser-globals: 1.0.11
eslint: 8.57.0
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)
object.assign: 4.1.5
object.entries: 1.1.8
semver: 6.3.1
@ -12757,7 +12815,7 @@ packages:
dependencies:
eslint: 8.57.0
eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1)(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)
eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0)
eslint-plugin-react: 7.35.0(eslint@8.57.0)
eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
@ -12784,7 +12842,7 @@ packages:
- supports-color
dev: true
/eslint-module-utils@2.8.1(@typescript-eslint/parser@7.16.1)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
/eslint-module-utils@2.8.1(@typescript-eslint/parser@8.0.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
engines: {node: '>=4'}
peerDependencies:
@ -12805,7 +12863,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
'@typescript-eslint/parser': 7.16.1(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser': 8.0.0(eslint@8.57.0)(typescript@5.5.3)
debug: 3.2.7
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
@ -12813,7 +12871,7 @@ packages:
- supports-color
dev: true
/eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0):
/eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.0.0)(eslint@8.57.0):
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
@ -12823,7 +12881,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
'@typescript-eslint/parser': 7.16.1(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/parser': 8.0.0(eslint@8.57.0)(typescript@5.5.3)
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
@ -12832,7 +12890,7 @@ packages:
doctrine: 2.1.0
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.16.1)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.0.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
hasown: 2.0.2
is-core-module: 2.15.0
is-glob: 4.0.3
@ -12848,7 +12906,7 @@ packages:
- supports-color
dev: true
/eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.16.1)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3):
/eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@8.0.0)(eslint@8.57.0)(jest@29.7.0)(typescript@5.5.3):
resolution: {integrity: sha512-YG28E1/MIKwnz+e2H7VwYPzHUYU4aMa19w0yGcwXnnmJH6EfgHahTJ2un3IyraUxNfnz/KUhJAFXNNwWPo12tg==}
engines: {node: ^16.10.0 || ^18.12.0 || >=20.0.0}
peerDependencies:
@ -12861,7 +12919,7 @@ packages:
jest:
optional: true
dependencies:
'@typescript-eslint/eslint-plugin': 7.16.1(@typescript-eslint/parser@7.16.1)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/eslint-plugin': 8.0.0(@typescript-eslint/parser@8.0.0)(eslint@8.57.0)(typescript@5.5.3)
'@typescript-eslint/utils': 7.16.1(eslint@8.57.0)(typescript@5.5.3)
eslint: 8.57.0
jest: 29.7.0(@types/node@20.14.11)(ts-node@10.9.2)