-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63a600e
commit 735e163
Showing
10 changed files
with
703 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
// https://docs.expo.dev/guides/using-eslint/ | ||
module.exports = { | ||
extends: 'expo', | ||
extends: "expo", | ||
rules: { | ||
"import/no-unresolved": [2, { ignore: ["^@env"] }], | ||
}, | ||
settings: { | ||
"import/resolver": { | ||
node: { | ||
extensions: [".js", ".jsx", ".ts", ".tsx"], | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,4 @@ yarn-error.* | |
# typescript | ||
*.tsbuildinfo | ||
|
||
.prettierrc | ||
.prettierrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
declare module '@env' { | ||
|
||
export const EXPO_IP: string; | ||
export const API_KEY, AUTH_DOMAIN, PROJECT_ID, STORAGE_BUCKET, MESSAGING_SENDER_ID, APP_ID: string; | ||
declare module "@env" { | ||
export const EXPO_IP: string; | ||
export const API_KEY: string, | ||
AUTH_DOMAIN: string, | ||
PROJECT_ID: string, | ||
STORAGE_BUCKET: string, | ||
MESSAGING_SENDER_ID: string, | ||
APP_ID: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
declare module "@env" { | ||
export const EXPO_IP: string; | ||
export const API_KEY: string; | ||
export const AUTH_DOMAIN: string; | ||
export const PROJECT_ID: string; | ||
export const STORAGE_BUCKET: string; | ||
export const MESSAGING_SENDER_ID: string; | ||
export const APP_ID: string; | ||
export const LOCATION_REFRESH_RATE: string; | ||
} |
Oops, something went wrong.