Skip to content
Open
Show file tree
Hide file tree
Changes from all 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"babel-loader": "^10.0.0",
"circular-dependency-plugin": "^5.2.0",
"css-loader": "7.1.2",
"eslint": "^8.57.0",
"eslint": "^9.8.0",

Choose a reason for hiding this comment

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

blocking: ESLint 8→9 is a major version bump that changes the default config system from .eslintrc.* to flat config (eslint.config.js). This project uses .eslintrc.js (legacy format), which ESLint 9 deprecates and does not load by default.

CI passed, but the ESLint pre-commit hook only runs on .js/.vue/.scss/.css files — since this PR changes only .json and .yaml files, ESLint was never actually invoked against the codebase.

Before merging, please:

  1. Run pnpm run lint-frontend locally to confirm ESLint 9 works with the current .eslintrc.js setup
  2. Verify that kolibri-format@1.0.1 and eslint-plugin-kolibri@0.18.0 are compatible with ESLint 9
  3. If linting fails, either migrate to flat config or set ESLINT_USE_FLAT_CONFIG=false in the lint scripts

"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-webpack": "0.13.10",
"eslint-plugin-import": "^2.31.0",
Expand Down
Loading