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

React-Query, Register Button, Auto Refetching, and Readme #8

Merged
merged 7 commits into from
Jan 28, 2024
Merged
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
11 changes: 9 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ module.exports = {
tsconfigRootDir: __dirname,
ecmaVersion: 2018,
},
plugins: ['simple-import-sort', 'react-native', 'unused-imports', 'jest'],
plugins: [
'simple-import-sort',
'react-native',
'unused-imports',
'jest',
'no-autofix',
],
env: {
jest: true,
},
Expand All @@ -15,7 +21,8 @@ module.exports = {
'simple-import-sort/exports': 'error',
'no-unused-vars': 'error',
'react-native/no-unused-styles': 'error',
'unused-imports/no-unused-imports': 'error',
'unused-imports/no-unused-imports': 'off',
'no-autofix/unused-imports/no-unused-imports': 'error',
},
overrides: [
{
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ npm install -g eas-cli
# Log in to your Expo account
eas login

# Build your project
# Build your project with one of these commands
# Use the --platform tag to select between android and ios builds
# Use the --profile tage to choose between develpoment, preview, and production build modules. These can be updated in the eas.json file.
eas build

# Submit your project to the App Store or Google Play
Expand Down
22 changes: 0 additions & 22 deletions __tests__/getStoredUser.spec.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion android/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:windowBackground">#E0B9BB</item>
<item name="android:windowBackground">#1A2533</item>
</style>

</resources>
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
buildscript {
ext {
buildToolsVersion = "33.0.0"
minSdkVersion = 21
minSdkVersion = 23
compileSdkVersion = 33
targetSdkVersion = 33

Expand Down
Loading
Loading