Skip to content

Update dependency stylelint to v17#1774

Open
k1h-renovate[bot] wants to merge 1 commit into
devfrom
renovate/stylelint-17.x
Open

Update dependency stylelint to v17#1774
k1h-renovate[bot] wants to merge 1 commit into
devfrom
renovate/stylelint-17.x

Conversation

@k1h-renovate
Copy link
Copy Markdown
Contributor

@k1h-renovate k1h-renovate Bot commented Feb 26, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
stylelint (source) devDependencies major ^14.16.1^17.0.0

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

stylelint/stylelint (stylelint)

v17.11.0

Compare Source

It adds 2 features, including a loader property to referenceFiles: {} for when the order of appearance in the reference styles matters.

v17.10.0

Compare Source

It adds 3 rules and fixes 4 bugs. You can use the *-layout-mappings rules to enforce logical or physical properties, units and keywords.

v17.9.1

Compare Source

It fixes 4 bugs. We also documented the messageArgs each rule provides to the message configuration property.

v17.9.0

Compare Source

It adds 3 new features. Adding the referenceFiles property to your configuration object makes the no-unknown-animations, no-unknown-custom-media and no-unknown-custom-properties rules more useful.

v17.8.0

Compare Source

It adds 3 new rules and 1 configuration property.

v17.7.0

Compare Source

It fixes 4 bugs, including clearer problem messages by removing filler words and leading with the problem. We've also released 1.0.0 of create-stylelint to help with first-time Stylelint setup.

v17.6.0

Compare Source

It adds support for extending units in languageOptions, which then apply to rules like declaration-property-value-no-unknown, and fixes 2 bugs.

  • Added: support for extending units to languageOptions (#​9166) (@​jeddy3).
  • Fixed: missing ruleMetadata when linting multiple files with overrides (#​9154) (@​kovsu).
  • Fixed: custom-property-no-missing-var-function false positives for timeline-scope and animation-timeline (#​9164) (@​splincode).

v17.5.0

Compare Source

It deprecates two rule options, adds 1 rule option and fixes 7 bugs. We've also released 2.1.0 of our VS Code extension, which adds 8 new requested features, and our first release of the Stylelint Language Server.

v17.4.0

Compare Source

It adds 2 options to the rules and fixes 7 bugs.

v17.3.0

Compare Source

It fixes 17 bugs. 3 related to supporting calc() in declaration-property-value-no-unknown, and 13 performance ones that make Stylelint a further 3x faster when using the rules in our standard config.

v17.2.0

Compare Source

It fixes 7 bugs, including 5 performance ones that make Stylelint 7x faster and use 3x less memory on larger codebases such as design systems and monorepos. We also restructured our docs to create a contributor guide. If you'd like to help out and contribute to Stylelint, that's the place to start.

v17.1.1

Compare Source

It fixes 2 bugs.

v17.1.0

Compare Source

It fixes 5 bugs and adds the display-notation rule. Before we turn it on in our standard config, we'd like to hear the community's thoughts on which options to use.

v17.0.0

Compare Source

It contains 14 breaking changes, which we've detailed in the migrating to 17.0.0 guide. Additionally, it adds 3 options to the rules and fixes 9 bugs. We've also released compatible versions of our shared config, Visual Studio Code extension, Node.js Rule Tester and Jest preset.

  • Removed: CommonJS Node.js API (#​8859) (@​jeddy3).
  • Removed: output property in the Node.js API returned resolved object (#​8878) (@​jeddy3).
  • Removed: support for Node.js less than 20.19.0 (#​8867) (@​jeddy3).
  • Removed: GitHub formatter (#​8888) (@​jeddy3).
  • Removed: resolveNestedSelectors option from selector-class-pattern (#​8931) (@​jeddy3).
  • Removed: checkContextFunctionalPseudoClasses option from selector-max-id (#​8913) (@​jeddy3).
  • Changed: default fix mode to strict (#​8889) (@​jeddy3).
  • Changed: report to be consistent and predictable in how it handles the provided position arguments (#​8217) (@​romainmenke).
  • Changed: selector-max-* syntax rules for standard CSS nesting and modern functional pseudo-classes (#​8913) (@​jeddy3).
  • Changed: *-specificity semantic rules for standard CSS nesting (#​8913) (@​jeddy3).
  • Changed: no-duplicate-selectors and selector-no-qualifying-type for standard CSS nesting (#​8913) (@​jeddy3).
  • Changed: *-list rules to have consistent behaviour for vendor prefixes and case (#​8912) (@​jeddy3).
  • Changed: *-no-vendor-prefix rules to have consistent behaviour for their ignore*: [] secondary options (#​8924) (@​jeddy3).
  • Changed: declaration-property-max-values rule to have consistent behaviour for vendor prefixes (#​8926) (@​jeddy3).
  • Added: except: ["after-block"] to custom-property-empty-line-before (#​8921) (@​kovsu).
  • Added: except: ["after-block"] to declaration-empty-line-before (#​8910) (@​kovsu).
  • Added: ignoreSelectors: [] to no-duplicate-selectors (#​8883) (@​kovsu).
  • Fixed: Windows drive letter casing inconsistencies when matching patterns against file paths (#​8941) (@​adalinesimonian).
  • Fixed: CLI help to include TypeScript config files (#​8908) (@​kovsu).
  • Fixed: at-rule-descriptor-no-unknown false positives for declarations within feature-value-blocks (#​8868) (@​kovsu).
  • Fixed: declaration-block-no-redundant-longhand-properties false negatives for short and long combinations (#​8892) (@​nathannewyen).
  • Fixed: media-feature-name-no-unknown false positives for namespaced dollar variables and range context queries (#​8890) (@​kovsu).
  • Fixed: nesting-selector-no-missing-scoping-root false positives for CSS-in-JS (#​8905) (@​kovsu).
  • Fixed: no-invalid-position-declaration false negatives for embedded blocks (#​8907) (@​kovsu).
  • Fixed: selector-no-qualifying-type false negatives for :is/where() (#​8940) (@​romainmenke).
  • Fixed: selector-type-no-unknown false positives for MathML 4 tags (#​8874) (@​jeddy3).

v16.26.1

Compare Source

It fixes numerous false positive bugs, including many in the declaration-property-value-no-unknown rule for the latest CSS specifications.

  • Fixed: *-no-unknown false positives for latest specs by integrating @csstools/css-syntax-patches-for-csstree (#​8850) (@​romainmenke).
  • Fixed: at-rule-no-unknown false positives for @function (#​8851) (@​jeddy3).
  • Fixed: declaration-property-value-no-unknown false positives for attr(), if() and custom functions (#​8853) (@​jeddy3).
  • Fixed: function-url-quotes false positives when URLs require quoting (#​8804) (@​taearls).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::scroll-button() (#​8856) (@​Mouvedia).

v16.26.0

Compare Source

It adds 1 feature and fixes 2 bugs.

  • Added: support for customSyntax with function export (#​8834) (@​silverwind).
  • Fixed: custom-property-no-missing-var-function false positives for style query in if() function (#​8813) (@​sajdakabir).
  • Fixed: media-feature-range-notation false positives for multiple queries and except: exact-value (#​8832) (@​jeddy3).

v16.25.0

Compare Source

It adds 3 new features, including experimental support for bulk suppressions. It's also our first immutable release, with the package published to npm using trusted publishing and our dependencies updated on a cool down for improved supply chain security.

v16.24.0

Compare Source

It adds 1 new rule, adds 1 option to a rule and fixes 2 bugs.

v16.23.1

Compare Source

It fixes 7 bugs.

  • Fixed: no-invalid-position-declaration false positives for embedded styles (#​8701) (@​sw1tch3roo).
  • Fixed: property-no-deprecated erroneously autofixing clip (#​8699) (@​immitsu).
  • Fixed: property-no-deprecated false positives for -webkit-box-orient: vertical; (#​8699) (@​immitsu).
  • Fixed: selector-pseudo-*-no-unknown false positives for some meter pseudo classes/elements (#​8708) (@​Mouvedia).
  • Fixed: selector-pseudo-class-no-unknown false positives for :unchecked (#​8705) (@​Mouvedia).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::search-text (#​8707) (@​Mouvedia).
  • Fixed: selector-type-no-unknown false positives for selectedcontent (#​8716) (@​Mouvedia).

v16.23.0

Compare Source

It adds 5 new rules, 1 option to a rule and fixes 3 bugs. We've turned on the new rules in our standard config.

v16.22.0

Compare Source

It adds 3 rule features and fixes 2 bugs.

v16.21.1

Compare Source

It fixes 3 bugs.

v16.21.0

Compare Source

It rounds out the message secondary option and marks it as stable, adds 1 new option to a rule, and fixes 4 bugs.

v16.20.0

Compare Source

It fixes 2 bugs with the built-in rules.

v16.19.1

Compare Source

It fixes 1 bug with the no-empty-source rule.

v16.19.0

Compare Source

It adds 2 options to 2 rules and fixes 3 bugs.

  • Added: exceptWithoutPropertyFallback: [] to function-allowed-list (#​8488) (@​ryo-manba).
  • Added: ignore: ["four-into-three-edge-values"] to shorthand-property-no-redundant-values (#​8527) (@​ryo-manba).
  • Fixed: compact formatter with pnpm to newline the exit code (#​8534) (@​konomae).
  • Fixed: declaration-property-value-no-unknown range and message for invalid syntax within known functions (#​8528) (@​ryo-manba).
  • Fixed: no-empty-source false positives for --report-needless-disables (#​8536) (@​romainmenke).

v16.18.0

Compare Source

It adds 2 new rules and fixes 2 bugs. We've turned on these rules, and the syntax-string-no-invalid and layer-name-pattern ones from recent releases, in our standard config.

v16.17.0

Compare Source

It adds 1 new rule, support for languageOptions to 2 rules, 1 option to a rule, the --compute-edit-info CLI flag (along with support for EditInfo in 3 rules), and fixes 1 bug. EditInfo is useful for automated fixing tools and editor integrations.

v16.16.0

Compare Source

It adds support for computing EditInfo to 22 more rules and reverts a change that added context.lexer to our public API in the previous release.

v16.15.0

Compare Source

It adds 1 new rule, a languageOptions configuration property for configuring some of the new rules added in 16.13.0, regex support to 1 option and support for computing EditInfo to 6 rules. It fixes 9 bugs, including 2 with the tap reporter.

v16.14.1

Compare Source

It fixes a bug with caching.

[v16.14.0](https://redirect.github.com/stylelint/stylelint


Configuration

📅 Schedule: (in timezone Europe/Stockholm)

  • Branch creation
    • At 06:00 PM through 11:59 PM and 12:00 AM through 05:59 AM, Monday through Friday (* 18-23,0-5 * * 1-5)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@k1h-renovate
Copy link
Copy Markdown
Contributor Author

k1h-renovate Bot commented Feb 26, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: dds_web/static/package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: stylelint-config-recommended@7.0.0
npm warn Found: stylelint@17.8.0
npm warn node_modules/stylelint
npm warn   dev stylelint@"^17.0.0" from the root project
npm warn   1 more (stylelint-config-recess-order)
npm warn
npm warn Could not resolve dependency:
npm warn peer stylelint@"^14.4.0" from stylelint-config-recommended@7.0.0
npm warn node_modules/stylelint-config-recommended
npm warn   stylelint-config-recommended@"^7.0.0" from stylelint-config-standard@25.0.0
npm warn   node_modules/stylelint-config-standard
npm warn
npm warn Conflicting peer dependency: stylelint@14.16.1
npm warn node_modules/stylelint
npm warn   peer stylelint@"^14.4.0" from stylelint-config-recommended@7.0.0
npm warn   node_modules/stylelint-config-recommended
npm warn     stylelint-config-recommended@"^7.0.0" from stylelint-config-standard@25.0.0
npm warn     node_modules/stylelint-config-standard
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: stylelint-config-recommended-scss@5.0.2
npm warn Found: stylelint@17.8.0
npm warn node_modules/stylelint
npm warn   dev stylelint@"^17.0.0" from the root project
npm warn   1 more (stylelint-config-recess-order)
npm warn
npm warn Could not resolve dependency:
npm warn peer stylelint@"^14.0.0" from stylelint-config-recommended-scss@5.0.2
npm warn node_modules/stylelint-config-recommended-scss
npm warn   stylelint-config-recommended-scss@"^5.0.2" from stylelint-config-standard-scss@3.0.0
npm warn   node_modules/stylelint-config-standard-scss
npm warn
npm warn Conflicting peer dependency: stylelint@14.16.1
npm warn node_modules/stylelint
npm warn   peer stylelint@"^14.0.0" from stylelint-config-recommended-scss@5.0.2
npm warn   node_modules/stylelint-config-recommended-scss
npm warn     stylelint-config-recommended-scss@"^5.0.2" from stylelint-config-standard-scss@3.0.0
npm warn     node_modules/stylelint-config-standard-scss
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: stylelint-config-standard@25.0.0
npm warn Found: stylelint@17.8.0
npm warn node_modules/stylelint
npm warn   dev stylelint@"^17.0.0" from the root project
npm warn   1 more (stylelint-config-recess-order)
npm warn
npm warn Could not resolve dependency:
npm warn peer stylelint@"^14.4.0" from stylelint-config-standard@25.0.0
npm warn node_modules/stylelint-config-standard
npm warn   stylelint-config-standard@"^25.0.0" from stylelint-config-twbs-bootstrap@3.2.1
npm warn   node_modules/stylelint-config-twbs-bootstrap
npm warn
npm warn Conflicting peer dependency: stylelint@14.16.1
npm warn node_modules/stylelint
npm warn   peer stylelint@"^14.4.0" from stylelint-config-standard@25.0.0
npm warn   node_modules/stylelint-config-standard
npm warn     stylelint-config-standard@"^25.0.0" from stylelint-config-twbs-bootstrap@3.2.1
npm warn     node_modules/stylelint-config-twbs-bootstrap
npm warn ERESOLVE overriding peer dependency
npm warn While resolving: stylelint-config-standard-scss@3.0.0
npm warn Found: stylelint@17.8.0
npm warn node_modules/stylelint
npm warn   dev stylelint@"^17.0.0" from the root project
npm warn   1 more (stylelint-config-recess-order)
npm warn
npm warn Could not resolve dependency:
npm warn peer stylelint@"^14.0.0" from stylelint-config-standard-scss@3.0.0
npm warn node_modules/stylelint-config-standard-scss
npm warn   stylelint-config-standard-scss@"^3.0.0" from stylelint-config-twbs-bootstrap@3.2.1
npm warn   node_modules/stylelint-config-twbs-bootstrap
npm warn
npm warn Conflicting peer dependency: stylelint@14.16.1
npm warn node_modules/stylelint
npm warn   peer stylelint@"^14.0.0" from stylelint-config-standard-scss@3.0.0
npm warn   node_modules/stylelint-config-standard-scss
npm warn     stylelint-config-standard-scss@"^3.0.0" from stylelint-config-twbs-bootstrap@3.2.1
npm warn     node_modules/stylelint-config-twbs-bootstrap
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: stylelint-config-twbs-bootstrap@3.2.1
npm error Found: stylelint@17.8.0
npm error node_modules/stylelint
npm error   dev stylelint@"^17.0.0" from the root project
npm error   peer stylelint@">=14" from stylelint-config-recess-order@3.1.0
npm error   node_modules/stylelint-config-recess-order
npm error     stylelint-config-recess-order@"^3.0.0" from stylelint-config-twbs-bootstrap@3.2.1
npm error     node_modules/stylelint-config-twbs-bootstrap
npm error       dev stylelint-config-twbs-bootstrap@"^3.2.1" from the root project
npm error
npm error Could not resolve dependency:
npm error peer stylelint@"^14.4.0" from stylelint-config-twbs-bootstrap@3.2.1
npm error node_modules/stylelint-config-twbs-bootstrap
npm error   dev stylelint-config-twbs-bootstrap@"^3.2.1" from the root project
npm error
npm error Conflicting peer dependency: stylelint@14.16.1
npm error node_modules/stylelint
npm error   peer stylelint@"^14.4.0" from stylelint-config-twbs-bootstrap@3.2.1
npm error   node_modules/stylelint-config-twbs-bootstrap
npm error     dev stylelint-config-twbs-bootstrap@"^3.2.1" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2026-04-21T01_24_07_512Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2026-04-21T01_24_07_512Z-debug-0.log

@k1h-renovate k1h-renovate Bot requested a review from a team as a code owner February 26, 2026 01:16
@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 26, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.95%. Comparing base (af54aed) to head (851de67).

Additional details and impacted files
@@           Coverage Diff           @@
##              dev    #1774   +/-   ##
=======================================
  Coverage   92.95%   92.95%           
=======================================
  Files          30       30           
  Lines        5028     5028           
=======================================
  Hits         4674     4674           
  Misses        354      354           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@i-oden i-oden added type: dependency For release template npm labels Mar 17, 2026
@k1h-renovate k1h-renovate Bot force-pushed the renovate/stylelint-17.x branch from f8c5034 to 851de67 Compare April 21, 2026 01:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

npm type: dependency For release template

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant