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

@ -55,13 +55,13 @@ const createProps = (overrideProps: Partial<Props> = {}): Props => ({
),
});
export const OneImage = (): JSX.Element => {
export function OneImage(): JSX.Element {
const props = createProps();
return <ImageGrid {...props} />;
};
}
export const TwoImages = (): JSX.Element => {
export function TwoImages(): JSX.Element {
const props = createProps({
attachments: [
fakeAttachment({
@ -82,9 +82,9 @@ export const TwoImages = (): JSX.Element => {
});
return <ImageGrid {...props} />;
};
}
export const ThreeImages = (): JSX.Element => {
export function ThreeImages(): JSX.Element {
const props = createProps({
attachments: [
fakeAttachment({
@ -112,9 +112,9 @@ export const ThreeImages = (): JSX.Element => {
});
return <ImageGrid {...props} />;
};
}
export const FourImages = (): JSX.Element => {
export function FourImages(): JSX.Element {
const props = createProps({
attachments: [
fakeAttachment({
@ -149,9 +149,9 @@ export const FourImages = (): JSX.Element => {
});
return <ImageGrid {...props} />;
};
}
export const FiveImages = (): JSX.Element => {
export function FiveImages(): JSX.Element {
const props = createProps({
attachments: [
fakeAttachment({
@ -193,7 +193,7 @@ export const FiveImages = (): JSX.Element => {
});
return <ImageGrid {...props} />;
};
}
export const _6Images = (): JSX.Element => {
const props = createProps({
@ -257,7 +257,7 @@ _6Images.story = {
name: '6+ Images',
};
export const MixedContentTypes = (): JSX.Element => {
export function MixedContentTypes(): JSX.Element {
const props = createProps({
attachments: [
fakeAttachment({
@ -295,9 +295,9 @@ export const MixedContentTypes = (): JSX.Element => {
});
return <ImageGrid {...props} />;
};
}
export const Sticker = (): JSX.Element => {
export function Sticker(): JSX.Element {
const props = createProps({
attachments: [
fakeAttachment({
@ -313,25 +313,25 @@ export const Sticker = (): JSX.Element => {
});
return <ImageGrid {...props} />;
};
}
export const ContentAboveAndBelow = (): JSX.Element => {
export function ContentAboveAndBelow(): JSX.Element {
const props = createProps({
withContentAbove: true,
withContentBelow: true,
});
return <ImageGrid {...props} />;
};
}
ContentAboveAndBelow.story = {
name: 'Content Above and Below',
};
export const BottomOverlay = (): JSX.Element => {
export function BottomOverlay(): JSX.Element {
const props = createProps({
bottomOverlay: true,
});
return <ImageGrid {...props} />;
};
}