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, configuration changes
Description
eslint-plugin-import
to enforce import order and configured its rules ineslint.config.cjs
.remove0x
function insrc/lib/multisend.ts
..prettierrc
andpackage.json
for formatting consistency.Changes walkthrough 📝
8 files
cli.ts
Enforce import order in CLI example
examples/cli.ts
send-tx.ts
Enforce import order in send-tx example
examples/send-tx.ts
bundler.ts
Enforce import order in bundler library
src/lib/bundler.ts
multisend.ts
Enforce import order and add type in multisend library
src/lib/multisend.ts
remove0x
function.safe.ts
Enforce import order in safe library
src/lib/safe.ts
tx-manager.ts
Enforce import order in transaction manager
src/tx-manager.ts
util.ts
Enforce import order in utility functions
src/util.ts
utils.spec.ts
Enforce import order in utility tests
tests/utils.spec.ts
1 files
.prettierrc
Add newline at end of Prettier configuration file
.prettierrc
1 files
eslint.config.cjs
Add and configure eslint-plugin-import for import order
eslint.config.cjs
eslint-plugin-import
to enforce import order.1 files
package.json
Add eslint-plugin-import to dependencies
package.json
eslint-plugin-import
to dependencies.