chore: migrate ESLint from v8 to v10 with flat config#56
Merged
tompahoward merged 2 commits intomainfrom Mar 14, 2026
Merged
Conversation
Replaces .eslintrc.json, .eslintrc-json.json, and .eslintignore with eslint.config.mjs flat config. Upgrades all ESLint plugins to latest versions. Removes eslint-plugin-import and its resolvers (replaced by typescript-eslint's built-in resolution). Empties dry-aged-deps exclusions as all dependencies are now current. https://claude.ai/code/session_01HNvBcQzT1SviRqkUpP5Xce
The commented-out badges reference an external code style checker that conflicts with the project's Prettier configuration. https://claude.ai/code/session_01HNvBcQzT1SviRqkUpP5Xce
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.
Summary
.eslintrc.json) to ESLint v10 flat config (eslint.config.mjs).eslintrc.json,.eslintrc-json.json, and.eslintignore(replaced by flat config)typescript-eslintv8,eslint-plugin-unicornv63,eslint-plugin-jsdocv62,eslint-plugin-jsoncv3,eslint-plugin-no-secretsv2,eslint-config-prettierv10eslint-plugin-importand its resolvers (import resolution handled bytypescript-eslint)@typescript-eslint/eslint-pluginand@typescript-eslint/parser(replaced by unifiedtypescript-eslintv8)dry-aged-depsexclusions — all dependencies are now currentRisk: 3/5
Major ESLint migration touching linting config, plugins, and npm scripts. All existing lint rules have been preserved. Source code changes are limited to minor jsdoc formatting auto-fixes.
Test plan
npm run buildpasses (compile + test + package)npm run eslintpasses (TS linting)npm run eslint:jsonpasses (JSON linting)https://claude.ai/code/session_01HNvBcQzT1SviRqkUpP5Xce