Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import eslint from '@eslint/js';
import importPlugin from 'eslint-plugin-import';
import importPlugin from 'eslint-plugin-import-x';

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot remove the import package

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done — removed the import plugin, its flat config entries, and both eslint-plugin-import-x and eslint-import-resolver-typescript from package.json in 5a9e42b.

import jest from 'eslint-plugin-jest';
import tseslint from 'typescript-eslint';

Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build": "tsc && rollup -c",
"clean": "rimraf dist",
"format": "prettier . --write",
"lint:eslint": "eslint src --ext .ts",
"lint:eslint": "eslint src",
"lint:prettier": "prettier . --check",
"lint": "npm run lint:eslint && npm run lint:prettier",
"pkg-ok": "pkg-ok",
Expand Down Expand Up @@ -45,10 +45,11 @@
},
"homepage": "https://github.com/abraham/reflection#readme",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint": "^10.0.0",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-jest": "^29.0.1",
"jest": "^30.0.3",
"pkg-ok": "^3.0.0",
Expand All @@ -57,7 +58,7 @@
"rollup": "^4.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0"
"typescript-eslint": "^8.56.0"
},
"jest": {
"collectCoverage": true,
Expand Down
Loading