Skip to content

Commit fa6fdd8

Browse files
Bump the all group across 1 directory with 6 updates (#2784)
* Bump the all group across 1 directory with 6 updates Bumps the all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@primer/primitives](https://github.com/primer/primitives) | `9.1.2` | `10.3.4` | | [@primer/stylelint-config](https://github.com/primer/stylelint-config) | `13.2.2` | `13.2.3` | | [eslint](https://github.com/eslint/eslint) | `9.18.0` | `9.19.0` | | [eslint-plugin-github](https://github.com/github/eslint-plugin-github) | `5.1.5` | `5.1.6` | | [semver](https://github.com/npm/node-semver) | `7.6.3` | `7.7.0` | Updates `@primer/primitives` from 9.1.2 to 10.3.4 - [Release notes](https://github.com/primer/primitives/releases) - [Changelog](https://github.com/primer/primitives/blob/main/CHANGELOG.md) - [Commits](primer/primitives@v9.1.2...v10.3.4) Updates `@primer/stylelint-config` from 13.2.2 to 13.2.3 - [Release notes](https://github.com/primer/stylelint-config/releases) - [Changelog](https://github.com/primer/stylelint-config/blob/main/CHANGELOG.md) - [Commits](primer/stylelint-config@v13.2.2...v13.2.3) Updates `eslint` from 9.18.0 to 9.19.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v9.18.0...v9.19.0) Updates `eslint-plugin-github` from 5.1.5 to 5.1.6 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](github/eslint-plugin-github@v5.1.5...v5.1.6) Updates `semver` from 7.6.3 to 7.7.0 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](npm/node-semver@v7.6.3...v7.7.0) Updates `stylelint` from 16.10.0 to 16.14.1 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint@16.10.0...16.14.1) --- updated-dependencies: - dependency-name: "@primer/primitives" dependency-type: direct:development update-type: version-update:semver-major dependency-group: all - dependency-name: "@primer/stylelint-config" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all - dependency-name: eslint-plugin-github dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all - dependency-name: semver dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]> * fix: stylelint rule disables --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marie Lucca <[email protected]>
1 parent 0a596e1 commit fa6fdd8

File tree

11 files changed

+982
-578
lines changed

11 files changed

+982
-578
lines changed

package-lock.json

+961-570
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
"@changesets/cli": "^2.27.12",
4646
"@csstools/postcss-sass": "^5.1.1",
4747
"@github/prettier-config": "^0.0.6",
48-
"@primer/primitives": "^9.1.2",
49-
"@primer/stylelint-config": "^13.2.2",
48+
"@primer/primitives": "^10.3.4",
49+
"@primer/stylelint-config": "^13.2.3",
5050
"@primer/view-components": "^0.36.5",
5151
"autoprefixer": "^10.4.18",
5252
"chokidar-cli": "^3.0.0",

src/base/kbd.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
kbd {
55
display: inline-block;
66
padding: var(--base-size-4);
7-
// stylelint-disable-next-line primer/typography
7+
// stylelint-disable-next-line primer/typography, declaration-property-value-no-unknown
88
font: 11px $mono-font;
99
// stylelint-disable-next-line primer/typography
1010
line-height: 10px;

src/branch-name/branch-name.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
display: inline-block;
77
// stylelint-disable-next-line primer/spacing
88
padding: 2px 6px;
9-
// stylelint-disable-next-line primer/typography
9+
// stylelint-disable-next-line primer/typography, declaration-property-value-no-unknown
1010
font: 12px $mono-font;
1111
color: var(--fgColor-muted, var(--color-fg-muted));
1212
word-break: break-all;

src/layout/grid.scss

+12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,28 @@
11
// GRID
22

33
// Columns
4+
5+
// stylelint-disable-next-line declaration-property-value-no-unknown
46
.col-1 { width: (1 * 0.0833333333 * 100%); }
7+
// stylelint-disable-next-line declaration-property-value-no-unknown
58
.col-2 { width: (2 * 0.0833333333 * 100%); }
9+
// stylelint-disable-next-line declaration-property-value-no-unknown
610
.col-3 { width: (3 * 0.0833333333 * 100%); }
11+
// stylelint-disable-next-line declaration-property-value-no-unknown
712
.col-4 { width: (4 * 0.0833333333 * 100%); }
13+
// stylelint-disable-next-line declaration-property-value-no-unknown
814
.col-5 { width: (5 * 0.0833333333 * 100%); }
15+
// stylelint-disable-next-line declaration-property-value-no-unknown
916
.col-6 { width: (6 * 0.0833333333 * 100%); }
17+
// stylelint-disable-next-line declaration-property-value-no-unknown
1018
.col-7 { width: (7 * 0.0833333333 * 100%); }
19+
// stylelint-disable-next-line declaration-property-value-no-unknown
1120
.col-8 { width: (8 * 0.0833333333 * 100%); }
21+
// stylelint-disable-next-line declaration-property-value-no-unknown
1222
.col-9 { width: (9 * 0.0833333333 * 100%); }
23+
// stylelint-disable-next-line declaration-property-value-no-unknown
1324
.col-10 { width: (10 * 0.0833333333 * 100%); }
25+
// stylelint-disable-next-line declaration-property-value-no-unknown
1426
.col-11 { width: (11 * 0.0833333333 * 100%); }
1527
.col-12 { width: 100%; }
1628

src/markdown/code.scss

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
pre code,
6969
pre tt {
7070
display: inline;
71-
max-width: auto;
7271
padding: 0;
7372
margin: 0;
7473
overflow: visible;

src/markdown/footnotes.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
left: calc(var(--base-size-24) * -1);
4242
pointer-events: none;
4343
content: '';
44-
// stylelint-disable-next-line primer/borders, primer/colors
44+
// stylelint-disable-next-line primer/borders, primer/colors, declaration-property-value-no-unknown
4545
border: 2px $border-style var(--borderColor-accent-emphasis, var(--color-accent-emphasis));
4646
// stylelint-disable-next-line primer/borders
4747
border-radius: $border-radius;

src/markdown/markdown-body.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
// stylelint-disable-next-line primer/spacing
8888
padding: 0 1em;
8989
color: var(--fgColor-muted, var(--color-fg-muted));
90-
// stylelint-disable-next-line primer/borders, primer/colors
90+
// stylelint-disable-next-line primer/borders, primer/colors, declaration-property-value-no-unknown
9191
border-left: 0.25em $border-style var(--borderColor-default, var(--color-border-default));
9292

9393
> :first-child {

src/marketing/utilities/animations.scss

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Animation utilities for marketing
22

33
.hover-grow-mktg {
4+
// stylelint-disable-next-line declaration-property-value-no-unknown
45
transition: transform 0.4s $ease-mktg;
56

67
&:hover {

src/navigation/sidenav.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
&:last-child {
2727
// makes sure there is a "bottom border" in case the list is not long enough
28-
// stylelint-disable-next-line primer/box-shadow
28+
// stylelint-disable-next-line primer/box-shadow, declaration-property-value-no-unknown
2929
box-shadow: 0 $border-width 0 var(--borderColor-default, var(--color-border-default));
3030
}
3131

src/utilities/typography.scss

+1
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@
287287

288288
/* Force long "words" to wrap if they exceed the width of the container */
289289
.wb-break-word {
290+
// stylelint-disable-next-line declaration-property-value-keyword-no-deprecated
290291
word-break: break-word !important;
291292
// this is for backwards compatibility with browsers that don't respect overflow-wrap
292293
word-wrap: break-word !important;

0 commit comments

Comments
 (0)