Claude/fix ci pipeline k rw ki#18
Merged
ThePlenkov merged 6 commits intocopilot/resolve-pull-request-conflictsfrom Feb 27, 2026
Merged
Claude/fix ci pipeline k rw ki#18ThePlenkov merged 6 commits intocopilot/resolve-pull-request-conflictsfrom
ThePlenkov merged 6 commits intocopilot/resolve-pull-request-conflictsfrom
Conversation
- Run prettier format:write to fix formatting across all files - Fix eslint.config.js in adt-cli to import from eslint.config.mjs (not .js) - Remove dynamic imports of @abapify/adk in services/import/service.ts to fix nx module boundary violations - Add eslint-disable comments for intentional empty functions (silentLogger, print placeholders, singleton constructor) - Fix no-useless-escape in plugin-loader.ts regex character class https://claude.ai/code/session_012RYTowbXpNASEXfpt1H4dP
Co-authored-by: ThePlenkov <6381507+ThePlenkov@users.noreply.github.com>
Co-authored-by: ThePlenkov <6381507+ThePlenkov@users.noreply.github.com>
Co-authored-by: ThePlenkov <6381507+ThePlenkov@users.noreply.github.com>
fix: resolve CI pipeline failures — lint errors and no-test exit
PR Compliance Guide 🔍Below is a summary of compliance checks for this PR:
Compliance status legend🟢 - Fully Compliant🟡 - Partial Compliant 🔴 - Not Compliant ⚪ - Requires Further Human Verification 🏷️ - Compliance label |
||||||||||||||||||
PR Code Suggestions ✨Explore these optional code suggestions:
|
|||||||||
Contributor
|
View your CI Pipeline Execution ↗ for commit 212d3d9
☁️ Nx Cloud last updated this comment at |
7edf55e
into
copilot/resolve-pull-request-conflicts
2 checks passed
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
PR Type
Enhancement
Description
Comprehensive code formatting and style normalization across the entire codebase
Standardized quote style: converted double quotes to single quotes in generated schema files
Removed trailing whitespace from comment lines and blank lines throughout multiple files
Reformatted multi-line object literals, array declarations, and function signatures for improved readability
Added trailing commas to object properties for consistency
Wrapped arrow function parameters in parentheses for style consistency
Split long assertion statements and function calls across multiple lines
Collapsed appropriate multi-line structures into single-line format where suitable
Added missing
AdkTransportimport in the import service moduleApplied consistent indentation and spacing across test files and source code
Diagram Walkthrough
File Walkthrough
22 files
build.test.ts
Code formatting and whitespace cleanup in build testspackages/ts-xsd/tests/unit/build.test.ts
throughout the file
with proper indentation
multiple lines
abapgit-doma.test.ts
Integration test formatting and assertion statement cleanuppackages/ts-xsd/tests/integration/abapgit-doma.test.ts
for readability
traces.ts
Generated schema file quote style and formatting normalizationpackages/adt-schemas/src/schemas/generated/schemas/sap/traces.ts
the file
$importsarray to single-line formatresolve.ts
Schema resolver code formatting and whitespace cleanuppackages/ts-xsd/src/xsd/resolve.ts
break across multiple lines
resolve.test.ts
Code formatting and style consistency improvementspackages/ts-xsd/tests/unit/resolve.test.ts
removed, multi-line object literals reformatted for readability
ct => ct.namebecomes
(ct) => ct.name)readability
appropriate
traverser.test.ts
Code formatting and style consistency improvementspackages/ts-xsd/tests/unit/traverser.test.ts
test file
consistency
// Using 'all' instead of'sequence')packagesV1.ts
Quote style standardization and formatting cleanuppackages/adt-schemas/src/schemas/generated/schemas/sap/packagesV1.ts
consistency
where appropriate
namespace URIs
traverser.ts
Code formatting and type definition improvementspackages/ts-xsd/src/xsd/traverser.ts
file
NodeSourcetype union to multi-line format for readabilityindentation
transportmanagmentSingle.ts
Quote style standardization and formatting cleanuppackages/adt-schemas/src/schemas/generated/schemas/custom/transportmanagmentSingle.ts
consistency
appropriate
namespace URIs
build.ts
Code formatting and function signature improvementspackages/ts-xsd/src/xsd/build.ts
readability
logpoint.ts
Quote style standardization and formatting cleanuppackages/adt-schemas/src/schemas/generated/schemas/sap/logpoint.ts
consistency
where appropriate
namespace URIs
codegen-namespace.test.ts
Code formatting and style consistency improvementspackages/ts-xsd/tests/unit/codegen-namespace.test.ts
appropriate
adtcore.ts
Code style: quote normalization and whitespace cleanuppackages/adt-schemas/src/schemas/generated/schemas/sap/adtcore.ts
the schema
atcfinding.ts
Code style: quote normalization and whitespace cleanuppackages/adt-schemas/src/schemas/generated/schemas/sap/atcfinding.ts
the schema
parse-coverage.test.ts
Test formatting: whitespace cleanup and line break adjustmentspackages/ts-xsd/tests/unit/parse-coverage.test.ts
indentation
resolution-demo.test.ts
Test formatting: whitespace cleanup and line break adjustmentspackages/ts-xsd/tests/integration/resolution-demo.test.ts
indentation
infer.test.ts
Test formatting: whitespace cleanup and structure reformattingpackages/ts-xsd/tests/unit/infer.test.ts
where appropriate
transportmanagment.ts
Code style: quote normalization and whitespace cleanuppackages/adt-schemas/src/schemas/generated/schemas/sap/transportmanagment.ts
the schema
checkrun.ts
Code style: quote normalization and whitespace cleanuppackages/adt-schemas/src/schemas/generated/schemas/sap/checkrun.ts
the schema
log.ts
Code style: quote normalization and whitespace cleanuppackages/adt-schemas/src/schemas/generated/schemas/sap/log.ts
the schema
link-schema-same-name.test.ts
Test formatting: whitespace cleanup and line break adjustmentspackages/ts-xsd/tests/unit/link-schema-same-name.test.ts
indentation
refresh.ts
Code style: import and description formattingpackages/adt-cli/src/lib/commands/auth/refresh.ts
1 files
service.ts
Add missing import for AdkTransportpackages/adt-cli/src/lib/services/import/service.ts
AdkTransportto the import statement from@abapify/adk101 files