eslint: use semicolon TypeScript delimeter

This commit is contained in:
Alex Gleason
2023-10-02 13:54:02 -05:00
parent 702124fb79
commit 645ce60a5f
479 changed files with 1928 additions and 1938 deletions

View File

@ -4,8 +4,8 @@ import { useAccount } from 'soapbox/api/hooks';
import Account, { IAccount } from 'soapbox/components/account';
interface IAccountContainer extends Omit<IAccount, 'account'> {
id: string
withRelationship?: boolean
id: string;
withRelationship?: boolean;
}
const AccountContainer: React.FC<IAccountContainer> = ({ id, withRelationship, ...props }) => {

View File

@ -149,7 +149,7 @@ const SoapboxMount = () => {
};
interface ISoapboxLoad {
children: React.ReactNode
children: React.ReactNode;
}
/** Initial data loader. */
@ -205,7 +205,7 @@ const SoapboxLoad: React.FC<ISoapboxLoad> = ({ children }) => {
};
interface ISoapboxHead {
children: React.ReactNode
children: React.ReactNode;
}
/** Injects metadata into site head with Helmet. */

View File

@ -5,14 +5,14 @@ import { useAppSelector } from 'soapbox/hooks';
import { makeGetStatus } from 'soapbox/selectors';
interface IStatusContainer extends Omit<IStatus, 'status'> {
id: string
contextType?: string
id: string;
contextType?: string;
/** @deprecated Unused. */
otherAccounts?: any
otherAccounts?: any;
/** @deprecated Unused. */
getScrollPosition?: any
getScrollPosition?: any;
/** @deprecated Unused. */
updateScrollBottom?: any
updateScrollBottom?: any;
}
/**