Fix prettier warnings

This commit is contained in:
2023-09-15 14:42:43 +02:00
committed by Clément Le Bihan
parent 654022b48a
commit 585be2aa19
4 changed files with 5 additions and 7 deletions

View File

@@ -17,7 +17,6 @@
"rules": {
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-function": "off",
"no-restricted-imports": [

View File

@@ -183,7 +183,7 @@ export const en = {
noRecentSearches: 'No recent searches',
avatar: 'Avatar',
changeIt: 'Change It',
verified: "Verified",
verified: 'Verified',
};
export const fr: typeof en = {
@@ -369,7 +369,7 @@ export const fr: typeof en = {
noRecentSearches: 'Aucune recherche récente',
avatar: 'Avatar',
changeIt: 'Modifier',
verified: "Verifié",
verified: 'Verifié',
};
export const sp: typeof en = {
@@ -560,5 +560,5 @@ export const sp: typeof en = {
avatar: 'Avatar',
changeIt: 'Cambialo',
verified: "Verified"
verified: 'Verified',
};

View File

@@ -8,8 +8,8 @@
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"pretty:check": "prettier --check",
"pretty:write": "prettier --write",
"pretty:check": "prettier --check .",
"pretty:write": "prettier --write .",
"lint": "eslint .",
"test": "jest -i",
"test:cov": "jest -i --coverage",

View File

@@ -1,5 +1,4 @@
import { useEffect, useState } from 'react';
import { useDispatch } from 'react-redux';
import API from '../API';
import { Text } from 'native-base';
import { useNavigation } from '../Navigation';