Skip to content

chore(deps-dev): bump eslint-plugin-unicorn from 63.0.0 to 64.0.0#24

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/eslint-plugin-unicorn-64.0.0
Closed

chore(deps-dev): bump eslint-plugin-unicorn from 63.0.0 to 64.0.0#24
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/eslint-plugin-unicorn-64.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 31, 2026

Copy link
Copy Markdown
Contributor

Bumps eslint-plugin-unicorn from 63.0.0 to 64.0.0.

Release notes

Sourced from eslint-plugin-unicorn's releases.

v64.0.0

New rules

Improvements

  • Support TypeScript type assertions in many rules (#2909) 6b41299a
  • text-encoding-identifier-case: Support template literals (#2905) 9448c8ce
  • prefer-math-min-max: Ignore Date objects (#2903) cd53d9ea
  • prevent-abbreviations: Handle exported TS interfaces and enums (#2898) 6dc01d23
  • no-array-callback-reference: Skip TypeScript type predicate callbacks (#2897) 02364c83
  • prefer-spread: Skip autofix when it would drop comments (#2896) 6ff14677
  • no-useless-undefined: Flag return undefined for explicit undefined return types (#2876) 41fc9c27
  • no-unnecessary-polyfills: Improve performance (#2874) c88bf295
  • expiring-todo-comments: Add ignoreDates option (#2892) 95a288ba
  • prevent-abbreviations: Recognize jQuery 42f53641
  • prefer-object-from-entries: Avoid auto-fixing generic reduce (#2878) bea9b200

Fixes

  • expiring-todo-comments: Fix partial version comparison (#2895) 51390e9d
  • consistent-destructuring: Fix false positive for nested rest destructuring (#2894) 1cddfb59
  • consistent-destructuring: Fix false positive after reassignment (#2893) c7f57d0e
  • consistent-function-scoping: Fix TypeScript false positives for lexical this (#2885) a383657a
  • custom-error-definition: Fix class field autofix (#2887) 1359726b
  • explicit-length-check: Fix || fallback false positives (#2889) 84246ecd
  • explicit-length-check: Avoid unsafe autofix in negated comparisons (#2883) 73b043ba
  • import-style: Fix false positive for type-only import (#2891) aea99544
  • no-unused-properties: Fix for JSX member access (#2890) 0ff698b3
  • better-regex: Fix empty-pattern autofix (#2881) c2019877
  • prefer-global-this: Fix for window-specific in checks (#2879) 6bf75370
  • prefer-native-coercion-functions: Fix false positive for TS type predicates (#2888) 4c4b565a
  • prefer-set-has: Fix string false positives (#2882) c230c220
  • prefer-top-level-await: Fix false positive with Promise.all (#2884) 67faa7ac

sindresorhus/eslint-plugin-unicorn@v63.0.0...v64.0.0

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 31, 2026
Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 63.0.0 to 64.0.0.
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](sindresorhus/eslint-plugin-unicorn@v63.0.0...v64.0.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-unicorn
  dependency-version: 64.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dionmcm

dionmcm commented Jun 15, 2026

Copy link
Copy Markdown
Member

Superseded by #36, which combines this with the other compatible npm bumps into one verified upgrade (compile + lint + full test suite green). Closing in favour of #36.

@dionmcm dionmcm closed this Jun 15, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/eslint-plugin-unicorn-64.0.0 branch June 15, 2026 10:52
dionmcm added a commit that referenced this pull request Jun 16, 2026
…4, Storybook 10, jsdom 29, @types/node 25, unicorn 64, minor/patch group)

Combines dependabot PRs #34, #27, #26, #25, #24, #23, #22, #21, #19 into one
verified upgrade. Excludes #28 (Vite 6→8) — see below.

TypeScript 5→6 migration (#27):
- Add `ignoreDeprecations: "6.0"` to the 4 tsconfigs using `moduleResolution: node`
  (node10 errors as deprecated in TS6).
- Add explicit `types: ["node"]` to those tsconfigs — TS6 no longer auto-discovers
  @types/node, which otherwise breaks every `console`/`require`/`node:test` reference.
- Bump the VSCode client's lib/target to ES2022 (it already uses Array.prototype.at;
  @types/node@20 incidentally supplied the lib, @types/node@25 does not).
- Remove type assertions TS6 now proves unnecessary (eslint --fix) and the imports
  they orphaned.

Other fixes surfaced by the bumps:
- EclEditor.tsx: annotate the @monaco-editor/react OnMount params explicitly;
  monaco-editor 0.55 makes them resolve to `error` under typed-linting.

EXCLUDED — Vite (#28), kept at ^6: Vite ≥7 writes bundle output as UTF-8, which
re-encodes the lone UTF-16 surrogates in the generated ANTLR serialized-ATN string
to U+FFFD and corrupts the lexer at runtime ("The specified lexer action type
undefined is not valid"). This breaks every consumer of the ecl-core bundle (LSP
server, slack bot, editors). Confirmed on both Vite 7.3.5 and 8.0.3; only Vite 6
emits the ATN as \uXXXX escapes. Needs dedicated investigation/upstream fix.

Verified: compile clean, lint 0 errors, npm test all pass
(ecl-core 1640, ecl-lsp-server 81, editor-core 74, editor-react 33, editor 34,
slack-bot 226).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
dionmcm added a commit that referenced this pull request Jun 16, 2026
…4, Storybook 10, jsdom 29, @types/node 25, unicorn 64, minor/patch group)

Combines dependabot PRs #34, #27, #26, #25, #24, #23, #22, #21, #19 into one
verified upgrade. Excludes #28 (Vite 6→8) — see below.

TypeScript 5→6 migration (#27):
- Add `ignoreDeprecations: "6.0"` to the 4 tsconfigs using `moduleResolution: node`
  (node10 errors as deprecated in TS6).
- Add explicit `types: ["node"]` to those tsconfigs — TS6 no longer auto-discovers
  @types/node, which otherwise breaks every `console`/`require`/`node:test` reference.
- Bump the VSCode client's lib/target to ES2022 (it already uses Array.prototype.at;
  @types/node@20 incidentally supplied the lib, @types/node@25 does not).
- Remove type assertions TS6 now proves unnecessary (eslint --fix) and the imports
  they orphaned.

Other fixes surfaced by the bumps:
- EclEditor.tsx: annotate the @monaco-editor/react OnMount params explicitly;
  monaco-editor 0.55 makes them resolve to `error` under typed-linting.

EXCLUDED — Vite (#28), kept at ^6: Vite ≥7 writes bundle output as UTF-8, which
re-encodes the lone UTF-16 surrogates in the generated ANTLR serialized-ATN string
to U+FFFD and corrupts the lexer at runtime ("The specified lexer action type
undefined is not valid"). This breaks every consumer of the ecl-core bundle (LSP
server, slack bot, editors). Confirmed on both Vite 7.3.5 and 8.0.3; only Vite 6
emits the ATN as \uXXXX escapes. Needs dedicated investigation/upstream fix.

Verified: compile clean, lint 0 errors, npm test all pass
(ecl-core 1640, ecl-lsp-server 81, editor-core 74, editor-react 33, editor 34,
slack-bot 226).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant