Front: Lint + format

This commit is contained in:
Arthur Jamet
2023-12-28 09:01:03 +01:00
committed by Clément Le Bihan
parent 2bf1e783a9
commit 4e3b378d6a
2 changed files with 9 additions and 2 deletions
+1
View File
@@ -45,6 +45,7 @@ const ScaffoldAuth: FunctionComponent<ScaffoldAuthProps> = ({
);
// eslint-disable-next-line @typescript-eslint/no-var-requires
const [banner] = useAssets(require('../../assets/banner.jpg'));
// eslint-disable-next-line @typescript-eslint/no-var-requires
const [googleLogo] = useAssets(require('../../assets/google.png'));
return (
+8 -2
View File
@@ -1,8 +1,14 @@
import Song from '../../models/Song';
import React from 'react';
import { Image, Platform, View } from 'react-native';
import { Pressable, Text, PresenceTransition, Icon, useBreakpointValue } from 'native-base';
import { LikeButton } from './SongCardInfoLikeBtn';
import { Image, Platform, View } from 'react-native';
import {
Pressable,
Text,
PresenceTransition,
Icon,
useBreakpointValue,
} from 'native-base';
import { Ionicons } from '@expo/vector-icons';
import { useQuery } from '../../Queries';
import API from '../../API';