-
Notifications
You must be signed in to change notification settings - Fork 4
feat: Refactor Android and TypeScript architecture #38
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
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
cbe4cdd
feat: Refactor Android and TypeScript architecture
martinzigrai 90ac527
feat: Complete Talsec SDK 17.0.1 integration & fixes
martinzigrai cd74fbd
chore: dependency update
martinzigrai 553f264
docs: CHANGELOG update
martinzigrai 0e80b8f
fix: random number generator update
martinzigrai 8b16cc2
chore: allChecksFinnished visualisation
martinzigrai 55a4b4c
refactor: Move startFreeRASP to dedicated module
martinzigrai b99f817
docs: CHANGELOG update
martinzigrai d8f975c
fix: add missing package-lock.json
martinzigrai 971b1e2
fix: package.json package-lock.json update
martinzigrai 49d1e48
Fix: Regenerate package-lock.json to resolve CI/CD dependency issues
martinzigrai 61ec24b
Fix: Explicitly add yaml dependency to resolve CI/CD lockfile error
martinzigrai 5195e1f
fix: package-lock.json update
martinzigrai 969e1ec
fix package lock
tompsota 2bb395b
chore: action.yml update
martinzigrai 59a88af
feat: resolve eslint issues
tompsota b636d19
chore: fix linters
tompsota 5a1ae03
chore: TalsecRuntime update
martinzigrai 87dc7d5
chore: add source files by path on ios
tompsota 5dbd3ed
chore: update dist
tompsota 47e983b
Merge branch 'main' into cap/2.3.0
tompsota File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,58 @@ | ||
| module.exports = { | ||
| parser: "@typescript-eslint/parser", | ||
| parserOptions: { | ||
| project: "./tsconfig.json" | ||
| }, | ||
| plugins: [ | ||
| "@typescript-eslint", | ||
| "import" | ||
| ], | ||
| extends: [ | ||
| "eslint:recommended", | ||
| "plugin:@typescript-eslint/recommended", | ||
| "prettier", | ||
| "plugin:import/typescript" | ||
| ], | ||
| rules: { | ||
| "no-fallthrough": "off", | ||
| "no-constant-condition": "off", | ||
| "@typescript-eslint/no-this-alias": "off", | ||
| "@typescript-eslint/no-explicit-any": "off", | ||
| "@typescript-eslint/explicit-module-boundary-types": [ | ||
| "error", | ||
| { | ||
| "allowArgumentsExplicitlyTypedAsAny": true | ||
| } | ||
| ], | ||
| "@typescript-eslint/array-type": "error", | ||
| "@typescript-eslint/consistent-type-assertions": "error", | ||
| "@typescript-eslint/consistent-type-imports": "error", | ||
| "@typescript-eslint/prefer-for-of": "error", | ||
| "@typescript-eslint/prefer-optional-chain": "error", | ||
| "import/first": "error", | ||
| "import/order": [ | ||
| "error", | ||
| { | ||
| "alphabetize": { | ||
| "order": "asc", | ||
| "caseInsensitive": false | ||
| }, | ||
| "groups": [ | ||
| [ | ||
| "builtin", | ||
| "external" | ||
| ], | ||
| "parent", | ||
| [ | ||
| "sibling", | ||
| "index" | ||
| ] | ||
| ], | ||
| "newlines-between": "always" | ||
| } | ||
| ], | ||
| "import/newline-after-import": "error", | ||
| "import/no-duplicates": "error", | ||
| "import/no-mutable-exports": "error" | ||
| } | ||
| }; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.