-
Notifications
You must be signed in to change notification settings - Fork 6
feat: add batch read support via UA_Client_Service_read #17
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
Open
juljimm
wants to merge
5
commits into
valiot:master
Choose a base branch
from
juljimm:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
020ef65
feat: add batch read support via UA_Client_Service_read
ab85bf6
fix: address review issues in batch read implementation
340f8b7
Update gitignore
5ee7523
chore(opex62541): add credo linter and precommit alias
185732e
chore: add MCP server configuration
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,108 @@ | ||
| %{ | ||
| configs: [ | ||
| %{ | ||
| name: "default", | ||
| files: %{ | ||
| included: [ | ||
| "lib/" | ||
| ], | ||
| excluded: [ | ||
| ~r"/_build/", | ||
| ~r"/deps/", | ||
| ~r"/node_modules/" | ||
| ] | ||
| }, | ||
| plugins: [], | ||
| requires: [], | ||
| strict: true, | ||
| parse_timeout: 5000, | ||
| color: true, | ||
| checks: %{ | ||
| enabled: [ | ||
| # | ||
| # Consistency | ||
| # | ||
| {Credo.Check.Consistency.ExceptionNames, []}, | ||
| {Credo.Check.Consistency.LineEndings, []}, | ||
| {Credo.Check.Consistency.ParameterPatternMatching, []}, | ||
| {Credo.Check.Consistency.SpaceAroundOperators, []}, | ||
| {Credo.Check.Consistency.SpaceInParentheses, []}, | ||
| {Credo.Check.Consistency.TabsOrSpaces, []}, | ||
|
|
||
| # | ||
| # Design | ||
| # | ||
| {Credo.Check.Design.AliasUsage, [priority: :low, if_nested_deeper_than: 2, if_called_more_often_than: 1]}, | ||
| {Credo.Check.Design.TagTODO, [exit_status: 0]}, | ||
| {Credo.Check.Design.TagFIXME, []}, | ||
|
|
||
| # | ||
| # Readability | ||
| # | ||
| {Credo.Check.Readability.AliasOrder, []}, | ||
| {Credo.Check.Readability.FunctionNames, []}, | ||
| {Credo.Check.Readability.LargeNumbers, []}, | ||
| {Credo.Check.Readability.MaxLineLength, [priority: :low, max_length: 120]}, | ||
| {Credo.Check.Readability.ModuleAttributeNames, []}, | ||
| {Credo.Check.Readability.ModuleDoc, [priority: :low]}, | ||
| {Credo.Check.Readability.ModuleNames, []}, | ||
| {Credo.Check.Readability.ParenthesesInCondition, []}, | ||
| {Credo.Check.Readability.PredicateFunctionNames, []}, | ||
| {Credo.Check.Readability.PreferImplicitTry, []}, | ||
| {Credo.Check.Readability.RedundantBlankLines, []}, | ||
| {Credo.Check.Readability.Semicolons, []}, | ||
| {Credo.Check.Readability.SpaceAfterCommas, []}, | ||
| {Credo.Check.Readability.StringSigils, []}, | ||
| {Credo.Check.Readability.TrailingBlankLine, []}, | ||
| {Credo.Check.Readability.TrailingWhiteSpace, []}, | ||
| {Credo.Check.Readability.UnnecessaryAliasExpansion, []}, | ||
| {Credo.Check.Readability.VariableNames, []}, | ||
|
|
||
| # | ||
| # Refactoring | ||
| # | ||
| {Credo.Check.Refactor.CondStatements, []}, | ||
| {Credo.Check.Refactor.CyclomaticComplexity, [max_complexity: 15]}, | ||
| {Credo.Check.Refactor.FunctionArity, [max_arity: 6]}, | ||
| {Credo.Check.Refactor.LongQuoteBlocks, [max_line_count: 500]}, | ||
| {Credo.Check.Refactor.MapJoin, []}, | ||
| {Credo.Check.Refactor.MatchInCondition, []}, | ||
| {Credo.Check.Refactor.NegatedConditionsInUnless, []}, | ||
| {Credo.Check.Refactor.NegatedConditionsWithElse, []}, | ||
| {Credo.Check.Refactor.Nesting, [max_nesting: 4]}, | ||
| {Credo.Check.Refactor.UnlessWithElse, []}, | ||
| {Credo.Check.Refactor.WithClauses, []}, | ||
|
|
||
| # | ||
| # Warnings | ||
| # | ||
| {Credo.Check.Warning.BoolOperationOnSameValues, []}, | ||
| {Credo.Check.Warning.Dbg, []}, | ||
| {Credo.Check.Warning.ExpensiveEmptyEnumCheck, []}, | ||
| {Credo.Check.Warning.IExPry, []}, | ||
| {Credo.Check.Warning.IoInspect, []}, | ||
| {Credo.Check.Warning.MissedMetadataKeyInLoggerConfig, []}, | ||
| {Credo.Check.Warning.OperationOnSameValues, []}, | ||
| {Credo.Check.Warning.OperationWithConstantResult, []}, | ||
| {Credo.Check.Warning.RaiseInsideRescue, []}, | ||
| {Credo.Check.Warning.SpecWithStruct, []}, | ||
| {Credo.Check.Warning.UnsafeExec, []}, | ||
| {Credo.Check.Warning.UnusedEnumOperation, []}, | ||
| {Credo.Check.Warning.UnusedFileOperation, []}, | ||
| {Credo.Check.Warning.UnusedKeywordOperation, []}, | ||
| {Credo.Check.Warning.UnusedListOperation, []}, | ||
| {Credo.Check.Warning.UnusedPathOperation, []}, | ||
| {Credo.Check.Warning.UnusedRegexOperation, []}, | ||
| {Credo.Check.Warning.UnusedStringOperation, []}, | ||
| {Credo.Check.Warning.UnusedTupleOperation, []} | ||
| ], | ||
| disabled: [ | ||
| # Disabled: macros generate code that legitimately doesn't use all params | ||
| {Credo.Check.Warning.UnusedFunctionReturnHelper, []}, | ||
| # Disabled: pipe vs no pipe is a style choice in our macros | ||
| {Credo.Check.Refactor.PipeChainStart, []} | ||
| ] | ||
| } | ||
| } | ||
| ] | ||
| } |
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 |
|---|---|---|
|
|
@@ -27,4 +27,5 @@ opex62541-*.tar | |
|
|
||
| /certs/ | ||
|
|
||
| /.vscode/ | ||
| /.vscode/ | ||
| /.claude/ | ||
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 @@ | ||
| ../../.mcp.json |
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.
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.