build(deps): bump minimatch and eslint#1101
Open
dependabot[bot] wants to merge 4 commits intomainfrom
Open
Conversation
1 task
4441e1b to
1d7068e
Compare
mbouaziz
added a commit
that referenced
this pull request
Feb 19, 2026
## Summary
- Fix `no-useless-assignment` in `sk_types.ts` (use `let res: number`
instead of `let res = 0`)
- Fix `prefer-nullish-coalescing` in `sk_types.ts` and `index.ts` (use
`??` and `??=`)
- Fix `jsdoc/require-throws-type` in `api.ts` and `rest.ts` (use
`{Type}` syntax)
- Fix `jsdoc/escape-inline-tags` in `index.ts` (backtick-escape package
names in JSDoc)
These are valid lint improvements that pass with current ESLint 9 and
unblock the ESLint 10 upgrade (#1101).
## Test plan
- [x] `make check-ts` passes (all build + lint) — only pre-existing
`skc` wasm build failure remains
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Bumps [minimatch](https://github.com/isaacs/minimatch) to 10.2.1 and updates ancestor dependency [eslint](https://github.com/eslint/eslint). These dependencies need to be updated together. Updates `minimatch` from 9.0.5 to 10.2.1 - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md) - [Commits](isaacs/minimatch@v9.0.5...v10.2.1) Updates `eslint` from 9.15.0 to 10.0.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v9.15.0...v10.0.0) --- updated-dependencies: - dependency-name: minimatch dependency-version: 10.2.1 dependency-type: indirect - dependency-name: eslint dependency-version: 10.0.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
- @eslint/js: ^9.15.0 → ^10.0.0 - @stylistic/eslint-plugin-js: ^2.11.0 → ^4.4.0 - eslint-plugin-jsdoc: ^50.6.0 → ^62.6.0 - typescript-eslint: ^8.16.0 → ^8.56.0 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ESLint 10 reports eslint-env comments as errors. The node globals (process, console) are already declared in each project's eslint.config.js languageOptions.globals, so the comments were redundant. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Update package-lock.json and edge_service pnpm-lock.yaml to reflect all dependency changes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1d7068e to
f2be3a8
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.
Summary
@skiplabs/eslint-configdependencies for ESLint 10 compatibility (@eslint/js^10,@stylistic/eslint-plugin-js^4,eslint-plugin-jsdoc^62,typescript-eslint^8.56)/* eslint-env node */comments from exampleserver.jsfiles (ESLint 10 errors on these; globals are already declared ineslint.config.js)package-lock.jsonandexamples/cache_invalidation/edge_service/pnpm-lock.yamlNotes
eslint-plugin-jsdocdoesn't declare ESLint 10 in peer deps yet (^7 || ^8 || ^9) but works in practice@stylistic/eslint-plugin-jsemits a deprecation warning recommending migration to@stylistic/eslint-plugin(not blocking)Test plan
make check-tsbuild + lint passes for all workspaces (only pre-existingskcwasm build failure remains, unrelated to ESLint)cache_invalidation/edge_service,blogger/reactive_service) lint clean🤖 Generated with Claude Code