[build] upgrade eslint to 9.37.0 (#88)

Co-authored-by: tobi <tobi.smethurst@protonmail.com>
Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88
Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org>
Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
This commit is contained in:
Zoë Bijl
2025-10-12 13:42:02 +02:00
committed by tobi
parent 75d7a62693
commit 1ff70886a1
975 changed files with 22196 additions and 21964 deletions
@@ -1,34 +1,34 @@
import PropTypes from 'prop-types';
import PropTypes from "prop-types";
import { FormattedMessage } from 'react-intl';
import { FormattedMessage } from "react-intl";
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { connect } from 'react-redux';
import ImmutablePropTypes from "react-immutable-proptypes";
import ImmutablePureComponent from "react-immutable-pure-component";
import { connect } from "react-redux";
import { debounce } from 'lodash';
import { debounce } from "lodash";
import { TimelineHint } from 'mastodon/components/timeline_hint';
import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error';
import { normalizeForLookup } from 'mastodon/reducers/accounts_map';
import { getAccountHidden } from 'mastodon/selectors';
import { TimelineHint } from "mastodon/components/timeline_hint";
import BundleColumnError from "mastodon/features/ui/components/bundle_column_error";
import { normalizeForLookup } from "mastodon/reducers/accounts_map";
import { getAccountHidden } from "mastodon/selectors";
import {
lookupAccount,
fetchAccount,
fetchFollowing,
expandFollowing,
} from '../../actions/accounts';
import ColumnBackButton from '../../components/column_back_button';
import { LoadingIndicator } from '../../components/loading_indicator';
import ScrollableList from '../../components/scrollable_list';
import AccountContainer from '../../containers/account_container';
import LimitedAccountHint from '../account_timeline/components/limited_account_hint';
import HeaderContainer from '../account_timeline/containers/header_container';
import Column from '../ui/components/column';
} from "../../actions/accounts";
import ColumnBackButton from "../../components/column_back_button";
import { LoadingIndicator } from "../../components/loading_indicator";
import ScrollableList from "../../components/scrollable_list";
import AccountContainer from "../../containers/account_container";
import LimitedAccountHint from "../account_timeline/components/limited_account_hint";
import HeaderContainer from "../account_timeline/containers/header_container";
import Column from "../ui/components/column";
const mapStateToProps = (state, { params: { acct, id } }) => {
const accountId = id || state.getIn(['accounts_map', normalizeForLookup(acct)]);
const accountId = id || state.getIn(["accounts_map", normalizeForLookup(acct)]);
if (!accountId) {
return {
@@ -38,15 +38,15 @@ const mapStateToProps = (state, { params: { acct, id } }) => {
return {
accountId,
remote: !!(state.getIn(['accounts', accountId, 'acct']) !== state.getIn(['accounts', accountId, 'username'])),
remoteUrl: state.getIn(['accounts', accountId, 'url']),
isAccount: !!state.getIn(['accounts', accountId]),
accountIds: state.getIn(['user_lists', 'following', accountId, 'items']),
hasMore: !!state.getIn(['user_lists', 'following', accountId, 'next']),
isLoading: state.getIn(['user_lists', 'following', accountId, 'isLoading'], true),
suspended: state.getIn(['accounts', accountId, 'suspended'], false),
remote: !!(state.getIn(["accounts", accountId, "acct"]) !== state.getIn(["accounts", accountId, "username"])),
remoteUrl: state.getIn(["accounts", accountId, "url"]),
isAccount: !!state.getIn(["accounts", accountId]),
accountIds: state.getIn(["user_lists", "following", accountId, "items"]),
hasMore: !!state.getIn(["user_lists", "following", accountId, "next"]),
isLoading: state.getIn(["user_lists", "following", accountId, "isLoading"], true),
suspended: state.getIn(["accounts", accountId, "suspended"], false),
hidden: getAccountHidden(state, accountId),
blockedBy: state.getIn(['relationships', accountId, 'blocked_by'], false),
blockedBy: state.getIn(["relationships", accountId, "blocked_by"], false),
};
};
@@ -82,7 +82,9 @@ class Following extends ImmutablePureComponent {
_load () {
const { accountId, isAccount, dispatch } = this.props;
if (!isAccount) dispatch(fetchAccount(accountId));
if (!isAccount) {
dispatch(fetchAccount(accountId));
}
dispatch(fetchFollowing(accountId));
}