Conversation
0972689 to
30a8713
Compare
There was a problem hiding this comment.
Pull Request Overview
This PR modernizes the project's development dependencies and configuration files, upgrading to the latest versions of build tools and linters while migrating to newer configuration formats.
- Upgrades major dev dependencies (ESLint 9, TypeScript 5.9, Vitest 4, Prettier 3)
- Migrates configuration files to modern formats (ESLint flat config, vitest.config.mts)
- Removes husky/commitlint tooling in favor of release-please workflow
- Replaces TypeScript path aliases with relative imports for better compatibility
Reviewed Changes
Copilot reviewed 32 out of 36 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updates dev dependencies to latest versions, removes husky/commitlint, adjusts Node.js engine requirement |
| vitest.config.ts → vitest.config.mts | Migrates to .mts extension and updates import from "vite" to "vitest/config" |
| tsconfig.json | Switches from @tsconfig/node18 to @tsconfig/node-lts, removes path aliases and esModuleInterop |
| eslint.config.js | New ESLint flat config replacing .eslintrc.js with updated rule configurations |
| .eslintrc.js, .eslintignore, .commitlintrc.js | Removed legacy configuration files |
| .husky/commit-msg | Removed husky git hook |
| src/**/*.ts | Adds trailing commas to function parameters for Prettier consistency |
| tests/**/*.test.ts | Replaces "@/" import aliases with relative paths, updates fs mock to inline factory pattern |
| tests/helpers/fsMock.ts | New helper implementing fs mock as factory function for Vitest |
| mocks/fs.ts | Removed manual mock directory in favor of inline factory pattern |
| README.md, FOR_DEVELOPMENT.md | Updates documentation to remove outdated version requirements |
| .npmignore | Updates ignored files to reflect new configuration file names |
Files not reviewed (2)
- tests/integration/analyze/managed-by-pnpm/pnpm-lock.yaml: Language not supported
- tests/integration/extract/managed-by-pnpm/pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
30a8713 to
69af12c
Compare
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.
No description provided.