chore: [BBND-1155] ESLint refactor#843
Merged
rubenbermejo3 merged 33 commits intodevelopmentfrom Feb 27, 2026
Merged
Conversation
Signed-off-by: rbermejo <ruben@io.builders>
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
…ESLintRefactor Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
Signed-off-by: rbermejo <ruben@io.builders>
MiguelLZPF
approved these changes
Feb 27, 2026
jaime-iobermudez
added a commit
that referenced
this pull request
Feb 27, 2026
Signed-off-by: jaime-iobermudez <jaime.bermudez@io.builders>
jaime-iobermudez
added a commit
that referenced
this pull request
Mar 2, 2026
Signed-off-by: jaime-iobermudez <jaime.bermudez@io.builders>
jaime-iobermudez
added a commit
that referenced
this pull request
Mar 3, 2026
Signed-off-by: jaime-iobermudez <jaime.bermudez@io.builders>
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.
Description
Restructure ESLint configuration across the monorepo by creating a shared
@hashgraph/eslint-configpackage and upgrading from ESLint 8 (EOL) to ESLint 9 + typescript-eslint v8.Motivation / Context
@typescript-eslint(6.x, 7.x, 8.x) coexisted in the monorepoeslint.config.mjswas monolithic with package-specific rules using absolute pathsChanges
New:
packages/eslint-config/createBaseConfig()): TypeScript + Prettier + unused-importsnode,react,jest,mocha,ddd,stylisticUpdated: Per-package
eslint.config.mjs@hashgraph/eslint-configpackages/ats/contracts: base + node + mochapackages/ats/sdk: base + node + jest + explicit-return-typeapps/ats/web: base + react + jestapps/mass-payout/backend: base + node + stylistic + ddd + jestapps/mass-payout/frontend: base + react + jestpackages/mass-payout/contracts: base + node + stylistic + ddd + mochapackages/mass-payout/sdk: base + node + stylistic + ddd + jestUpdated: Root config
packages/**andapps/**(each package lints itself)Updated: Dependencies
eslintto^9.24.0typescript-eslintv8 (replaces separate parser + plugin)@hashgraph/eslint-config: "*"to all packagesUpdated: Scripts
"lint": "eslint . --cache","lint:fix": "eslint . --fix --cache"lint:jsruns all workspaces,ats:lint:jsandmass-payout:lintfor product-specific lintingCleanup
packages/ats/sdk/.eslintignore(ignores moved to config).npmrcwithlegacy-peer-deps=truefor pre-existing Hardhat peer dep conflictsHow has this been tested?
npm run lintpasses on all 7 packages without introducing new errorsnpm run ats:lint:jslints only ATS packagesnpm run mass-payout:lintlints only Mass Payout packagesTypes of changes
Checklist