Skip to content

Commit d69eede

Browse files
authored
Update JS dependencies (#35759)
- Update all JS dependencies - Added new unicorn rules - `updates` now also supports updating `packageManager` and `engines`, and I see no reason not to do that, so I think we can try keeping these updated as well. If something in the build breaks because of this, I will revert and exclude `pnpm` from updating further, but as far as I understand, only corepack respects this field and pnpm itself does not care about it. - Regenerate SVGs.
1 parent 91839ca commit d69eede

File tree

5 files changed

+445
-208
lines changed

5 files changed

+445
-208
lines changed

eslint.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,6 +774,7 @@ export default defineConfig([
774774
'unicorn/no-empty-file': [2],
775775
'unicorn/no-for-loop': [0],
776776
'unicorn/no-hex-escape': [0],
777+
'unicorn/no-immediate-mutation': [0],
777778
'unicorn/no-instanceof-array': [0],
778779
'unicorn/no-invalid-fetch-options': [2],
779780
'unicorn/no-invalid-remove-event-listener': [2],
@@ -799,6 +800,7 @@ export default defineConfig([
799800
'unicorn/no-unreadable-array-destructuring': [0],
800801
'unicorn/no-unreadable-iife': [2],
801802
'unicorn/no-unused-properties': [2],
803+
'unicorn/no-useless-collection-argument': [2],
802804
'unicorn/no-useless-fallback-in-spread': [2],
803805
'unicorn/no-useless-length-check': [2],
804806
'unicorn/no-useless-promise-resolve-reject': [2],
@@ -810,8 +812,8 @@ export default defineConfig([
810812
'unicorn/numeric-separators-style': [0],
811813
'unicorn/prefer-add-event-listener': [2],
812814
'unicorn/prefer-array-find': [2],
813-
'unicorn/prefer-array-flat-map': [2],
814815
'unicorn/prefer-array-flat': [2],
816+
'unicorn/prefer-array-flat-map': [2],
815817
'unicorn/prefer-array-index-of': [2],
816818
'unicorn/prefer-array-some': [2],
817819
'unicorn/prefer-at': [0],
@@ -846,6 +848,7 @@ export default defineConfig([
846848
'unicorn/prefer-query-selector': [2],
847849
'unicorn/prefer-reflect-apply': [0],
848850
'unicorn/prefer-regexp-test': [2],
851+
'unicorn/prefer-response-static-json': [2],
849852
'unicorn/prefer-set-has': [0],
850853
'unicorn/prefer-set-size': [2],
851854
'unicorn/prefer-spread': [0],

0 commit comments

Comments
 (0)