Update eslint to 8.27.0

This commit is contained in:
Fedor Indutny 2022-11-17 16:45:19 -08:00 committed by GitHub
parent c8fb43a846
commit 98ef4c627a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
499 changed files with 8995 additions and 8494 deletions

View file

@ -196,7 +196,7 @@ const DEFAULT_ZOOM_FACTORS = [
},
];
export const Preferences = ({
export function Preferences({
addCustomColor,
availableCameras,
availableMicrophones,
@ -285,7 +285,7 @@ export const Preferences = ({
whoCanFindMe,
whoCanSeeMe,
zoomFactor,
}: PropsType): JSX.Element => {
}: PropsType): JSX.Element {
const storiesId = useUniqueId();
const themeSelectId = useUniqueId();
const zoomSelectId = useUniqueId();
@ -1174,24 +1174,24 @@ export const Preferences = ({
</div>
</TitleBarContainer>
);
};
}
const SettingsRow = ({
function SettingsRow({
children,
title,
}: {
children: ReactNode;
title?: string;
}): JSX.Element => {
}): JSX.Element {
return (
<div className="Preferences__settings-row">
{title && <h3 className="Preferences__padding">{title}</h3>}
{children}
</div>
);
};
}
const Control = ({
function Control({
left,
onClick,
right,
@ -1199,7 +1199,7 @@ const Control = ({
left: ReactNode;
onClick?: () => unknown;
right: ReactNode;
}): JSX.Element => {
}): JSX.Element {
const content = (
<>
<div className="Preferences__control--key">{left}</div>
@ -1220,7 +1220,7 @@ const Control = ({
}
return <div className="Preferences__control">{content}</div>;
};
}
function localizeDefault(i18n: LocalizerType, deviceLabel: string): string {
return deviceLabel.toLowerCase().startsWith('default')