Fix prettier warnings
This commit is contained in:
@@ -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": [
|
||||
|
||||
@@ -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',
|
||||
};
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user