Skip to content

Commit c086347

Browse files
Update node_module packages
Update packages to new versions to keep up with changes. Submitting directly after passing CQ dry run as the other blocking checks are not correct as that is third_party code. Bug: none Change-Id: I64aa8f9137ce2625254013a4637b90bd12fdb568 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6765543 Reviewed-by: Jack Franklin <[email protected]>
1 parent 71f0eaa commit c086347

File tree

5,205 files changed

+241862
-157975
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,205 files changed

+241862
-157975
lines changed

eslint.config.mjs

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export default defineConfig([
122122

123123
curly: 'error',
124124
'@stylistic/new-parens': 'error',
125-
'@stylistic/func-call-spacing': 'error',
125+
'@stylistic/function-call-spacing': 'error',
126126
'@stylistic/arrow-parens': ['error', 'as-needed'],
127127
'@stylistic/eol-last': 'error',
128128
'object-shorthand': ['error', 'properties'],
@@ -665,13 +665,10 @@ export default defineConfig([
665665
],
666666

667667
rules: {
668-
// errors on it('test') with no body
669-
'mocha/no-pending-tests': 'error',
670-
671668
// errors on {describe, it}.only
672669
'mocha/no-exclusive-tests': 'error',
673670

674-
'mocha/no-async-describe': 'error',
671+
'mocha/no-async-suite': 'error',
675672
'mocha/no-global-tests': 'error',
676673
'mocha/no-nested-tests': 'error',
677674

@@ -715,22 +712,22 @@ export default defineConfig([
715712
{
716713
name: 'describeWithDevtoolsExtension',
717714
type: 'suite',
718-
interfaces: ['BDD', 'TDD'],
715+
interface: 'BDD',
719716
},
720717
{
721718
name: 'describeWithEnvironment',
722719
type: 'suite',
723-
interfaces: ['BDD', 'TDD'],
720+
interface: 'BDD',
724721
},
725722
{
726723
name: 'describeWithLocale',
727724
type: 'suite',
728-
interfaces: ['BDD', 'TDD'],
725+
interface: 'BDD',
729726
},
730727
{
731728
name: 'describeWithMockConnection',
732729
type: 'suite',
733-
interfaces: ['BDD', 'TDD'],
730+
interface: 'BDD',
734731
},
735732
],
736733
},

front_end/ui/legacy/components/color_picker/spectrum.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@
7777
}
7878

7979
.spectrum-hue.display-p3 {
80+
/* stylelint-disable-next-line declaration-property-value-no-unknown */
8081
background: linear-gradient(
8182
to left in hsl longer hue,
8283
color(display-p3 1 0 0) 0 100%
83-
/* stylelint-disable-next-line declaration-property-value-no-unknown */
8484
);
8585
}
8686

0 commit comments

Comments
 (0)