Skip to content

Commit 23dd7c3

Browse files
dependabot[bot]Copilotjonrohan
authored
Bump the production-dependencies group across 1 directory with 5 updates (#654)
* Bump the production-dependencies group across 1 directory with 5 updates Bumps the production-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [stylelint](https://github.com/stylelint/stylelint) | `16.21.0` | `16.26.1` | | [stylelint-browser-compat](https://github.com/3846masa/stylelint-browser-compat) | `1.0.0-beta.169` | `1.0.0-beta.180` | | [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `38.0.0` | `39.0.1` | | [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss) | `6.12.1` | `6.13.0` | | [stylelint-value-no-unknown-custom-properties](https://github.com/csstools/stylelint-value-no-unknown-custom-properties) | `6.0.1` | `6.1.0` | Updates `stylelint` from 16.21.0 to 16.26.1 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint@16.21.0...16.26.1) Updates `stylelint-browser-compat` from 1.0.0-beta.169 to 1.0.0-beta.180 - [Release notes](https://github.com/3846masa/stylelint-browser-compat/releases) - [Changelog](https://github.com/3846masa/stylelint-browser-compat/blob/develop/CHANGELOG.md) - [Commits](3846masa/stylelint-browser-compat@v1.0.0-beta.169...v1.0.0-beta.180) Updates `stylelint-config-standard` from 38.0.0 to 39.0.1 - [Release notes](https://github.com/stylelint/stylelint-config-standard/releases) - [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint-config-standard@38.0.0...39.0.1) Updates `stylelint-scss` from 6.12.1 to 6.13.0 - [Release notes](https://github.com/stylelint-scss/stylelint-scss/releases) - [Changelog](https://github.com/stylelint-scss/stylelint-scss/blob/master/CHANGELOG.md) - [Commits](stylelint-scss/stylelint-scss@v6.12.1...v6.13.0) Updates `stylelint-value-no-unknown-custom-properties` from 6.0.1 to 6.1.0 - [Release notes](https://github.com/csstools/stylelint-value-no-unknown-custom-properties/releases) - [Changelog](https://github.com/csstools/stylelint-value-no-unknown-custom-properties/blob/main/CHANGELOG.md) - [Commits](csstools/stylelint-value-no-unknown-custom-properties@v6.0.1...v6.1.0) --- updated-dependencies: - dependency-name: stylelint dependency-version: 16.26.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: stylelint-browser-compat dependency-version: 1.0.0-beta.180 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: stylelint-config-standard dependency-version: 39.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: production-dependencies - dependency-name: stylelint-scss dependency-version: 6.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: stylelint-value-no-unknown-custom-properties dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Disable nesting-selector-no-missing-scoping-root for CSS-in-JS files (#657) * Initial plan * Disable nesting-selector-no-missing-scoping-root for .tsx files The new stylelint version (16.26.1) via stylelint-config-recommended introduces the nesting-selector-no-missing-scoping-root rule. This rule doesn't understand CSS-in-JS patterns used by styled-components where & is valid and refers to the component itself. Disabling this rule for .tsx files fixes the CI test failures. Co-authored-by: jonrohan <54012+jonrohan@users.noreply.github.com> * Add comment explaining nesting-selector-no-missing-scoping-root disable Co-authored-by: jonrohan <54012+jonrohan@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jonrohan <54012+jonrohan@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: jonrohan <54012+jonrohan@users.noreply.github.com>
1 parent 6ea7735 commit 23dd7c3

File tree

3 files changed

+204
-154
lines changed

3 files changed

+204
-154
lines changed

index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ export default {
150150
'length-zero-no-unit': null,
151151
'selector-max-type': null,
152152
'primer/colors': null,
153+
// Disable nesting-selector-no-missing-scoping-root for CSS-in-JS
154+
// In styled-components, the & selector is valid and refers to the component itself
155+
'nesting-selector-no-missing-scoping-root': null,
153156
},
154157
},
155158
{

0 commit comments

Comments
 (0)