Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUD-48]: migrate repository to buddy's org #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[js,jsx,ts,tsx]
tab_width = 2
indent_style = space
13 changes: 13 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
EXPO_PUBLIC_ION_TESTING_BASE_URL=https://sandbox.buddy.insure/react-native/index.html
EXPO_PUBLIC_SANDBOX_PARTNER_ID=p-buddytest
EXPO_PUBLIC_ION_TEST_CONFIG=https://gist.githubusercontent.com/joeyfigaro/178111856cbe293eed9d31832fe8a52c/raw/c35726759effe84e2d201cc5b57550fb99c2fe60
EXPO_PUBLIC_WEBVIEW_USERAGENT=buddy-partner-playground
EXPO_PUBLIC_ENABLE_SENTRY_DEBUGGING=false
EXPO_PUBLIC_SENTRY_DSN="https://1a550766243aff6420f4e6d273f48042@o321009.ingest.us.sentry.io/4507550604853248"
### handoff additions (see BUD-48)
EAS_ORG=
EAS_ADMIN=
GITHUB_ORG=
APPLE_ENTITY=
APPLE_TEAM_ID=
APPLE_ADMIN=
16 changes: 16 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"root": true,
"extends": ["universe/native"],
"ignorePatterns": ["babel.config.js", "metro.config.js"],
"rules": {
// Ensures props and state inside functions are always up-to-date
"react-hooks/exhaustive-deps": "warn",
"@typescript-eslint/array-type": ["error", { "default": "generic" }],

"comma-dangle": "off",
"sort-imports": [
"warn",
{ "ignoreDeclarationSort": true, "ignoreMemberSort": true },
],
},
}
50 changes: 50 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# OSX
#
.DS_Store

# Bundle artifacts
*.jsbundle

# shhh
.env.*
!.env.example
*.pem

# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/

# Expo
.expo/
dist/
web-build/
ios/
android/

# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision

# Metro
.metro-health-check*

# debug
npm-debug.*

# typescript
*.tsbuildinfo

# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
# The following patterns were generated by expo-cli

expo-env.d.ts
# @end expo-cli

*.ipa
*.zip

1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npx --no -- commitlint --edit $1
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.10.0
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tabWidth": 2,
"useTabs": false,
"semi": true
}
Loading