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

@@ -11,9 +11,9 @@ import { getTitle } from '../utils/coin-db';
import CryptoIcon from './crypto-icon';
export interface ICryptoAddress {
address: string
ticker: string
note?: string
address: string;
ticker: string;
note?: string;
}
const CryptoAddress: React.FC<ICryptoAddress> = (props): JSX.Element => {

View File

@@ -12,7 +12,7 @@ const messages = defineMessages({
});
interface ICryptoDonatePanel {
limit: number
limit: number;
}
const CryptoDonatePanel: React.FC<ICryptoDonatePanel> = ({ limit = 3 }): JSX.Element | null => {

View File

@@ -9,9 +9,9 @@ const getIcon = (ticker: string): string => {
};
interface ICryptoIcon {
ticker: string
title?: string
className?: string
ticker: string;
title?: string;
className?: string;
}
const CryptoIcon: React.FC<ICryptoIcon> = ({ ticker, title, className }): JSX.Element => {

View File

@@ -10,9 +10,9 @@ import { getTitle } from '../utils/coin-db';
import CryptoIcon from './crypto-icon';
interface IDetailedCryptoAddress {
address: string
ticker: string
note?: string
address: string;
ticker: string;
note?: string;
}
const DetailedCryptoAddress: React.FC<IDetailedCryptoAddress> = ({ address, ticker, note }): JSX.Element => {

View File

@@ -6,7 +6,7 @@ import { useSoapboxConfig } from 'soapbox/hooks';
import CryptoAddress from './crypto-address';
interface ISiteWallet {
limit?: number
limit?: number;
}
const SiteWallet: React.FC<ISiteWallet> = ({ limit }): JSX.Element => {