-
Notifications
You must be signed in to change notification settings - Fork 70
feat: Implement Trunk tool #604
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
Merged
Changes from 23 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
8d42e40
feat: Implement Trunk tool
Mansi-mParticle 609a661
fix linting issue and adress review comment
Mansi-mParticle baa8ba2
fix linting issue
Mansi-mParticle 03a0ccf
resolve Trunk tool issue with ktlint check
Mansi-mParticle 8be7838
quote adb output in emulator startup script to resolve Semgrep error
Mansi-mParticle 921d1c8
fix Semgrep error
Mansi-mParticle 86fbf32
fix Semgrep error for ci check
Mansi-mParticle c732e91
quote bootanim variable in until loop to avoid unquoted expansion
Mansi-mParticle e37b98d
quote variable to avoid unquoted expansion
Mansi-mParticle 2e71d18
ignore emulator script in lint checks
Mansi-mParticle 7b20da6
add .editorconfig for consistent code style
Mansi-mParticle cef0403
fix the test yml file test case error
Mansi-mParticle 2cac022
fix the syntax issue
Mansi-mParticle 4798823
fix the error for v4
Mansi-mParticle dbc1ddb
fix syntax issue
Mansi-mParticle 31ba262
correct GitHub Actions script to remove unterminated quotes
Mansi-mParticle abe23e3
Fixed indentation of for loop in script: block
Mansi-mParticle dda108b
fix: correct shell loop in instrumented orchestrator tests
Mansi-mParticle 11ea2f3
Prevents shell errors when packages are missing
Mansi-mParticle 5a596a4
fix the test case and syntax of instrument test cases
Mansi-mParticle fe9924d
Remove unnecessary bash pipefail line from script
Mansi-mParticle e1dda29
fix lint issue and sonarqube issue
Mansi-mParticle 00ce514
Merge remote-tracking branch 'origin/main' into feat/add-trunk-tool
Mansi-mParticle c7ddb6c
Add trunk check in Pullrequest and remove kit/rokt-kit from tracking
Mansi-mParticle 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,36 @@ | ||
| # Top-most EditorConfig file | ||
| root = true | ||
|
|
||
| [*] | ||
| indent_style = space | ||
| indent_size = 4 | ||
| trim_trailing_whitespace = true | ||
| insert_final_newline = true | ||
| # don't set end_of_line; let correct git setting checkout the appropriate one for OS | ||
| charset = utf-8 | ||
|
|
||
| [*.{json,yml,yaml,html,tf}] | ||
| indent_size = 2 | ||
| ij_json_array_wrapping = normal | ||
|
|
||
| [*.{kt,kts}] | ||
| ktlint_code_style = intellij_idea | ||
| max_line_length = 150 | ||
| ij_kotlin_allow_trailing_comma = true | ||
| ij_kotlin_allow_trailing_comma_on_call_site = true | ||
|
|
||
| [tooling/**/*.kt] | ||
| max_line_length = 200 | ||
|
|
||
| # IntelliJ/Android Studio specific (ktlint respects these too) | ||
| ij_kotlin_continuation_indent_size = 4 | ||
| ij_kotlin_align_multiline_parameters = false | ||
| ij_kotlin_align_multiline_parameters_in_calls = false | ||
| ij_kotlin_call_parameters_new_line_after_left_paren = true | ||
| ij_kotlin_call_parameters_right_paren_on_new_line = true | ||
|
|
||
| [**/test/**/*.kt] | ||
| max_line_length = off | ||
|
|
||
| [**/androidTest/**/*.kt] | ||
| max_line_length = off |
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
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.