Skip to content

Align @typescript-eslint packages to v8 and fix ESLint config compatibility#73

Closed
Copilot wants to merge 1 commit intodependabot/npm_and_yarn/typescript-eslint/parser-8.46.2from
copilot/sub-pr-67
Closed

Align @typescript-eslint packages to v8 and fix ESLint config compatibility#73
Copilot wants to merge 1 commit intodependabot/npm_and_yarn/typescript-eslint/parser-8.46.2from
copilot/sub-pr-67

Conversation

Copy link
Contributor

Copilot AI commented Oct 30, 2025

Addresses version mismatch between @typescript-eslint/parser (v8.46.2) and @typescript-eslint/eslint-plugin (v7.0.0) that causes compatibility issues.

Changes

  • package.json: Bump @typescript-eslint/eslint-plugin to ^8.46.2
  • .eslintrc.json: Update for v8 compatibility
    • Add plugin: prefix to extends configs (plugin:@typescript-eslint/recommended)
    • Remove tsconfigRootDir (v8 enforces absolute paths; relative project path suffices)
    • Remove deprecated @typescript-eslint/prefer-const (superseded by base ESLint rule)

Before

{
  "extends": [
    "@typescript-eslint/recommended"
  ],
  "parserOptions": {
    "project": "./tsconfig.json",
    "tsconfigRootDir": "."
  },
  "rules": {
    "@typescript-eslint/prefer-const": "error"
  }
}

After

{
  "extends": [
    "plugin:@typescript-eslint/recommended"
  ],
  "parserOptions": {
    "project": "./tsconfig.json"
  }
}

💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

@dependabot dependabot bot deleted the branch dependabot/npm_and_yarn/typescript-eslint/parser-8.46.2 October 30, 2025 17:33
@dependabot dependabot bot closed this Oct 30, 2025
Copilot AI changed the title [WIP] Address feedback on typescript-eslint/parser version bump Align @typescript-eslint packages to v8 and fix ESLint config compatibility Oct 30, 2025
Copilot AI requested a review from GerdsenAI-Admin October 30, 2025 17:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants