Skip to content

Commit 2b6f224

Browse files
authored
Update JS dependencies (#26025)
- Update all JS dependencies - Tweak eslint config, disable SequenceExpression aka. [Comma operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comma_operator), remove deprecated rule - Add new stylelint rule - Tested Monaco and Swagger
1 parent d021c88 commit 2b6f224

File tree

4 files changed

+566
-326
lines changed

4 files changed

+566
-326
lines changed

.eslintrc.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ rules:
420420
no-restricted-exports: [0]
421421
no-restricted-globals: [2, addEventListener, blur, close, closed, confirm, defaultStatus, defaultstatus, error, event, external, find, focus, frameElement, frames, history, innerHeight, innerWidth, isFinite, isNaN, length, location, locationbar, menubar, moveBy, moveTo, name, onblur, onerror, onfocus, onload, onresize, onunload, open, opener, opera, outerHeight, outerWidth, pageXOffset, pageYOffset, parent, print, removeEventListener, resizeBy, resizeTo, screen, screenLeft, screenTop, screenX, screenY, scroll, scrollbars, scrollBy, scrollTo, scrollX, scrollY, self, status, statusbar, stop, toolbar, top, __dirname, __filename]
422422
no-restricted-imports: [0]
423-
no-restricted-syntax: [2, WithStatement, ForInStatement, LabeledStatement]
423+
no-restricted-syntax: [2, WithStatement, ForInStatement, LabeledStatement, SequenceExpression]
424424
no-return-assign: [0]
425425
no-return-await: [0]
426426
no-script-url: [2]
@@ -666,7 +666,6 @@ rules:
666666
unicorn/no-unnecessary-await: [2]
667667
unicorn/no-unreadable-array-destructuring: [0]
668668
unicorn/no-unreadable-iife: [2]
669-
unicorn/no-unsafe-regex: [0]
670669
unicorn/no-unused-properties: [2]
671670
unicorn/no-useless-fallback-in-spread: [2]
672671
unicorn/no-useless-length-check: [2]

.stylelintrc.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ rules:
8484
media-feature-name-value-allowed-list: null
8585
media-feature-name-value-no-unknown: true
8686
media-feature-range-notation: null
87+
media-query-no-invalid: true
8788
named-grid-areas-no-invalid: true
8889
no-descending-specificity: null
8990
no-duplicate-at-import-rules: true

0 commit comments

Comments
 (0)