eslint: use semicolon TypeScript delimeter
This commit is contained in:
@ -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 }) => {
|
||||
|
||||
@ -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. */
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user