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

App: Fix significant eslint errors on local-currency-app #423

Open
aaronmboyd opened this issue May 15, 2022 · 1 comment
Open

App: Fix significant eslint errors on local-currency-app #423

aaronmboyd opened this issue May 15, 2022 · 1 comment
Labels
enhancement New feature or request help wanted Extra attention is needed mobile application size: 8

Comments

@aaronmboyd
Copy link
Contributor

There are hundreds of linting errors on this repository that should be fixed for basic Typescript robustness.

Run the linting stage and go and fix them if possible. Additionally, there is a lot of unused code.

@aaronmboyd aaronmboyd added enhancement New feature or request help wanted Extra attention is needed size: 8 mobile application labels May 15, 2022
@aaronmboyd
Copy link
Contributor Author

boyd@ThinkPad-Ubuntu:~/git/keyko/humanity-cash/local-currency-app$ yarn eslint
yarn run v1.22.5
$ npx eslint . --ext .ts,.tsx,.js

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/api/__tests__/index.spec.js
   6:1  warning  Skipped test  jest/no-disabled-tests
  11:1  warning  Skipped test  jest/no-disabled-tests

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/api/base.ts
  68:1  warning  You have a misspelled word: Axios on Comment  spellcheck/spell-checker

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/api/content.ts
   8:43  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  29:43  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/api/formatters/index.ts
   14:35  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   31:35  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  118:30  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types
  121:35  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/api/profilePicture.ts
   4:32  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types
  31:18  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/api/user.ts
  14:18  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/auth/cognito.ts
  40:21  warning  You have a misspelled word: Pieq on String                         spellcheck/spell-checker
  41:19  warning  You have a misspelled word: 4d7cknh0r1f8mkirvcio1mmmg6 on String   spellcheck/spell-checker
  45:1   warning  You have a misspelled word: 5ejkc0cno24js5n8i4eefh5oim on Comment  spellcheck/spell-checker

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/auth/types.ts
  164:29  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  168:32  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  174:21  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  176:12  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  177:18  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  179:22  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  180:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  181:19  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  193:28  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/auth/utils.ts
   6:4   warning  Unexpected any. Specify a different type                   @typescript-eslint/no-explicit-any
  33:4   warning  Unexpected any. Specify a different type                   @typescript-eslint/no-explicit-any
  60:48  warning  Argument 'attributes' should be typed with a non-any type  @typescript-eslint/explicit-module-boundary-types
  60:60  warning  Unexpected any. Specify a different type                   @typescript-eslint/no-explicit-any
  60:66  warning  Unexpected any. Specify a different type                   @typescript-eslint/no-explicit-any
  61:20  warning  Unexpected any. Specify a different type                   @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/contexts/user.tsx
  10:27  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  12:23  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  13:27  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  27:34  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  28:34  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  31:34  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/fuse.ts
  3:41  warning  Missing return type on function                         @typescript-eslint/explicit-module-boundary-types
  3:42  warning  Argument 'data' should be typed with a non-any type     @typescript-eslint/explicit-module-boundary-types
  3:48  warning  Unexpected any. Specify a different type                @typescript-eslint/no-explicit-any
  3:53  warning  Argument 'options' should be typed with a non-any type  @typescript-eslint/explicit-module-boundary-types
  3:62  warning  Unexpected any. Specify a different type                @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/hook-stores/index.ts
  29:51  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/hooks/useCachedResources.ts
  12:28  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/hooks/useMediaLibraryPermission.ts
  5:35  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/hooks/useNotifications.ts
  18:26  warning  Missing return type on function          @typescript-eslint/explicit-module-boundary-types
  22:20  warning  'readStorage' is defined but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/hooks/useRouteTracking.ts
  13:26  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/modules/payments/Loadup.tsx
  47:15  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/modules/payments/Send.tsx
   64:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  103:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  171:15  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/navigation/MainNavigationStack.tsx
  59:28  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/navigation/stacks/index.tsx
   60:34  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types
  125:32  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types
  163:33  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types
  196:34  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types
  312:37  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types
  348:40  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types
  360:40  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/authentication/ForgotPasswordSuccess.tsx
  29:31  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/authentication/ForgotPasswordVerification.tsx
   2:10  warning  'delay' is defined but never used  @typescript-eslint/no-unused-vars
  50:36  warning  Missing return type on function    @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/business/bank/index.tsx
  54:25  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/business/drawer/settings/MerchantSettingsProfile.tsx
  270:19  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/business/drawer/settings/MerchantSettingsSecurity.tsx
   92:9  warning  'isTouchId' is assigned a value but never used        @typescript-eslint/no-unused-vars
  129:8  warning  'onTouchIdOption' is assigned a value but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/business/drawer/settings/MerchantSettingsStaticQr.tsx
  43:8   warning  'businessName' is assigned a value but never used     @typescript-eslint/no-unused-vars
  63:8   warning  'onPressShowMyQR' is assigned a value but never used  @typescript-eslint/no-unused-vars
  88:21  warning  'qrRef' is assigned a value but never used            @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/business/drawer/settings/MerchantSettingsTermsAndConditions.tsx
  10:10  warning  'FontFamily' is defined but never used    @typescript-eslint/no-unused-vars
  52:27  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  57:22  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/business/payment/MerchantReturnQRCodeScan.tsx
   9:3  warning  'ActivityIndicator' is defined but never used   @typescript-eslint/no-unused-vars
  25:3  warning  'LoadingScreenTypes' is defined but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/business/signup/BusinessAddress.tsx
  104:9  warning  Forbidden non-null assertion  @typescript-eslint/no-non-null-assertion
  108:9  warning  Forbidden non-null assertion  @typescript-eslint/no-non-null-assertion

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/business/signup/BusinessOwnerAddress.tsx
  73:17  warning  Forbidden non-null assertion  @typescript-eslint/no-non-null-assertion
  74:13  warning  Forbidden non-null assertion  @typescript-eslint/no-non-null-assertion
  75:13  warning  Forbidden non-null assertion  @typescript-eslint/no-non-null-assertion
  76:13  warning  Forbidden non-null assertion  @typescript-eslint/no-non-null-assertion

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/bank/index.tsx
  52:25  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/dashboard/index.tsx
  248:22  warning  'e' is defined but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/drawer/settings/SettingsSecurity.tsx
    3:34  warning  'Switch' is defined but never used                    @typescript-eslint/no-unused-vars
   82:9   warning  'switchToggle' is assigned a value but never used     @typescript-eslint/no-unused-vars
  116:8   warning  'onTouchIdOption' is assigned a value but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/drawer/settings/SettingsTermsAndConditions.tsx
  47:27  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  52:22  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/drawer/whereToSpend.tsx
  188:70  warning  Unexpected any. Specify a different type           @typescript-eslint/no-explicit-any
  210:24  warning  Unexpected any. Specify a different type           @typescript-eslint/no-explicit-any
  218:56  warning  Unexpected any. Specify a different type           @typescript-eslint/no-explicit-any
  311:21  warning  You have a misspelled word: telprompt on Template  spellcheck/spell-checker
  327:48  warning  Unexpected any. Specify a different type           @typescript-eslint/no-explicit-any
  335:47  warning  Unexpected any. Specify a different type           @typescript-eslint/no-explicit-any
  364:30  warning  'e' is defined but never used                      @typescript-eslint/no-unused-vars
  421:32  warning  'e' is defined but never used                      @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/payment/PaymentFailed.tsx
  11:13  warning  'Routes' is defined but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/payment/PaymentRequest.tsx
   84:56  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  108:15  warning  'pv' is defined but never used            @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/payment/PaymentRequestSuccess.tsx
  45:31  warning  You have a misspelled word: berkkshares on String  spellcheck/spell-checker

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/payment/PaymentSuccess.tsx
  57:29  warning  You have a misspelled word: berkkshares on String  spellcheck/spell-checker

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/customer/signup/PersonalAddress.tsx
  80:9  warning  Forbidden non-null assertion  @typescript-eslint/no-non-null-assertion

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/screens/onboarding/VerificationHelp.tsx
  14:16  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  68:26  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/BankLinkDialog.tsx
  40:24  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/BlockInput.tsx
  12:13  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  15:26  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  16:10  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  17:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  20:16  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  42:3   warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/BorderedInput.tsx
  13:13  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  18:26  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  19:10  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  20:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  21:15  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  23:16  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  56:23  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/BottomSheet.tsx
  47:21  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/Button.tsx
    5:15  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  117:12  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  118:10  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  120:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  121:15  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  125:16  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types
  138:14  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/ChartView.tsx
  153:19  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/ConfirmationCode.tsx
   53:14  warning  Unexpected any. Specify a different type            @typescript-eslint/no-explicit-any
   66:16  warning  Missing return type on function                     @typescript-eslint/explicit-module-boundary-types
   66:17  warning  Argument 'evt' should be typed with a non-any type  @typescript-eslint/explicit-module-boundary-types
   66:22  warning  Unexpected any. Specify a different type            @typescript-eslint/no-explicit-any
   82:13  warning  Missing return type on function                     @typescript-eslint/explicit-module-boundary-types
   85:59  warning  Unexpected any. Specify a different type            @typescript-eslint/no-explicit-any
   95:20  warning  'oldState' is defined but never used                @typescript-eslint/no-unused-vars
  101:14  warning  Missing return type on function                     @typescript-eslint/explicit-module-boundary-types
  105:10  warning  Missing return type on function                     @typescript-eslint/explicit-module-boundary-types
  109:14  warning  Missing return type on function                     @typescript-eslint/explicit-module-boundary-types
  138:3   warning  Missing return type on function                     @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/Dots.tsx
  32:14  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/EventItem.tsx
  10:13  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  75:19  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/MaskInput.tsx
  13:13  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  16:26  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  19:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  22:16  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  45:3   warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types
  57:42  warning  'obfuscated' is defined but never used    @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/Modal.tsx
   9:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  31:15  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/Notifications.tsx
  50:23  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/PinCode.tsx
  11:18  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  12:25  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  15:17  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/SearchInput.tsx
  12:13  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  16:10  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  17:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  18:15  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  19:18  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  20:16  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  48:21  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/SecurityEyeButton.tsx
   7:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  18:27  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/SelectModal.tsx
  24:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  32:19  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  67:21  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/SettingDialog.tsx
  36:23  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/TransactionDetails.tsx
  68:28  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/TransactionFilters.tsx
   32:17  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   57:12  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  142:54  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  150:15  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/TransactionTypePicker.tsx
  11:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  37:31  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types
  67:57  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  70:27  warning  Forbidden non-null assertion              @typescript-eslint/no-non-null-assertion
  74:7   warning  Forbidden non-null assertion              @typescript-eslint/no-non-null-assertion
  95:9   warning  Forbidden non-null assertion              @typescript-eslint/no-non-null-assertion

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/WantedAndOffersChart.tsx
  71:30  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/cards/OwnedShareCard.tsx
  38:24  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/cards/PersonalDetailsCard.tsx
  35:29  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/cards/SettingsListItem.tsx
  12:15  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  35:26  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/cards/ShareCard.tsx
  53:23  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/cards/ShareEntryCard.tsx
  63:24  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/header/BackBtn.tsx
  30:17  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/header/CancelBtn.tsx
  31:19  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/header/Header.tsx
   3:10  warning  'Dimensions' is defined but never used    @typescript-eslint/no-unused-vars
  13:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  21:16  warning  Missing return type on function           @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/header/ModalHeader.tsx
  48:21  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/header/NextBtn.tsx
  26:17  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/reusable/BusinessOwnerDetailForm.tsx
  38:4  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/reusable/BusinessProfileForm.tsx
  8:10  warning  'buildImageFormData' is defined but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/reusable/DepositView.tsx
  25:21  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/reusable/PersonalDetailsForm.tsx
  10:11  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  37:4   warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/shared/uielements/reusable/PersonalProfileForm.tsx
  6:10  warning  'useMediaLibraryPermission' is defined but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/theme/colors.ts
  1:22  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/theme/elements.ts
    8:24  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   14:29  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   19:25  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   25:29  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   30:30  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   35:30  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   41:33  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   48:26  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   53:37  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   59:26  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   64:26  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   70:31  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   79:32  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   88:31  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
   94:31  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  102:28  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/utils/common.ts
  81:49  warning  You have a misspelled word: jpeg on Template  spellcheck/spell-checker
  89:26  warning  You have a misspelled word: jpeg on String    spellcheck/spell-checker
  93:5   warning  You have a misspelled word: jpeg' on Comment  spellcheck/spell-checker

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/utils/filters.ts
  22:36  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/utils/types.ts
  210:13  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any
  278:18  warning  Unexpected any. Specify a different type  @typescript-eslint/no-explicit-any

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/utils/validation.ts
   32:35  warning  Missing return type on function                    @typescript-eslint/explicit-module-boundary-types
   33:32  warning  'expireYear' is assigned a value but never used    @typescript-eslint/no-unused-vars
   53:36  warning  Missing return type on function                    @typescript-eslint/explicit-module-boundary-types
   62:36  warning  Missing return type on function                    @typescript-eslint/explicit-module-boundary-types
   63:11  warning  'addressLine' is assigned a value but never used   @typescript-eslint/no-unused-vars
   63:24  warning  'addressLine2' is assigned a value but never used  @typescript-eslint/no-unused-vars
   63:38  warning  'zipCode' is assigned a value but never used       @typescript-eslint/no-unused-vars
   63:47  warning  'city' is assigned a value but never used          @typescript-eslint/no-unused-vars
   63:53  warning  'country' is assigned a value but never used       @typescript-eslint/no-unused-vars
   69:36  warning  Missing return type on function                    @typescript-eslint/explicit-module-boundary-types
   81:44  warning  Missing return type on function                    @typescript-eslint/explicit-module-boundary-types
   92:44  warning  Missing return type on function                    @typescript-eslint/explicit-module-boundary-types
   95:11  warning  'addressLine' is assigned a value but never used   @typescript-eslint/no-unused-vars
   95:24  warning  'addressLine2' is assigned a value but never used  @typescript-eslint/no-unused-vars
   95:38  warning  'zipCode' is assigned a value but never used       @typescript-eslint/no-unused-vars
   95:47  warning  'city' is assigned a value but never used          @typescript-eslint/no-unused-vars
   95:53  warning  'country' is assigned a value but never used       @typescript-eslint/no-unused-vars
  101:44  warning  Missing return type on function                    @typescript-eslint/explicit-module-boundary-types
  104:35  warning  'industry' is assigned a value but never used      @typescript-eslint/no-unused-vars
  104:45  warning  'businessType' is assigned a value but never used  @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/views/Loading/PaymentPending.tsx
   14:25  warning  'FontFamily' is defined but never used  @typescript-eslint/no-unused-vars
  117:30  warning  'e' is defined but never used           @typescript-eslint/no-unused-vars

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/views/Loading/index.tsx
  5:22  warning  Object pattern argument should be typed  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/views/Payment/PaymentSuccess.tsx
  79:31  warning  You have a misspelled word: berkkshares on String  spellcheck/spell-checker

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/views/TransactionList/components/index.tsx
  32:32  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types
  92:34  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

/home/boyd/git/keyko/humanity-cash/local-currency-app/src/views/TransactionList/utils.ts
  13:25  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types
  33:27  warning  Missing return type on function  @typescript-eslint/explicit-module-boundary-types

✖ 247 problems (0 errors, 247 warnings)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed mobile application size: 8
Projects
None yet
Development

No branches or pull requests

1 participant