fix: convert require() to ESM imports in scripts and fix lint errors#111
Open
Akash-bajpai wants to merge 1 commit intoaccordproject:mainfrom
Open
fix: convert require() to ESM imports in scripts and fix lint errors#111Akash-bajpai wants to merge 1 commit intoaccordproject:mainfrom
Akash-bajpai wants to merge 1 commit intoaccordproject:mainfrom
Conversation
a8ff848 to
392a22e
Compare
…ssions Signed-off-by: Akash-bajpai <aakashbajpai2003@gmail.com>
392a22e to
15bd377
Compare
Author
|
Hi @dselman and @sanketshevkar! I'm Aakash Bajpai, a GSoC 2026 applicant. I've submitted a proposal for the LLM Based Template Logic Executor project. This is my first contribution to the repo — happy to make any changes needed! 🙏 |
Author
|
Hi @dselman and @sanketshevkar GSoC 2026 applicant here. This is my first contribution — happy to make any changes! 🙏 |
Author
|
Hi @dselman and @sanketshevkar! GSoC 2026 applicant here — happy to make any changes needed! 🙏 |
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.
Problem
The scripts/tag.js and scripts/updateRuntimeDependencies.js files were using require() style imports which violated the @typescript-eslint/no-require-imports rule, causing 7 lint errors.
Additionally, updateRuntimeDependencies.js had an unused expression (!existsSync && mkdirSync) which violated @typescript-eslint/no-unused-expressions.
Fix
joinimport from pathResult
Lint errors reduced from 7 to 0. Only pre-existing warnings remain.
Relates to GSoC 2026 proposal: LLM Based Template Logic Executor