Skip to content

Update dependency stylelint to v13.13.1

renovate-bot requested to merge renovate/stylelint-13.x into develop

This MR contains the following updates:

Package Type Update Change
stylelint (source) devDependencies minor 13.6.1 -> 13.13.1

Release Notes

stylelint/stylelint

v13.13.1

Compare Source

  • Fixed: invalid JSON for max-warnings option (#​5267).
  • Fixed: no-invalid-position-at-import-rule false positives for dollar variables (#​5264).

v13.13.0

Compare Source

  • Added: no-invalid-position-at-import-rule rule (#​5202).
  • Added: no-irregular-whitespace rule (#​5209).
  • Added: selector-disallowed-list rule (#​5239).
  • Added: selector-attribute-quotes autofix (#​5248).
  • Added: ignore: ["inside-function"] to declaration-property-unit-allowed-list (#​5194).
  • Fixed: color-no-hex false positives for CSS-in-JS objection notation (#​5186).
  • Fixed: font-family-no-missing-generic-family-keyword false positives for variables (#​5240).
  • Fixed: length-zero-no-unit autofix removing trailing zeroes and comments (#​5256).
  • Fixed: length-zero-no-unit false positives for level 4 math functions (#​5203).
  • Fixed: length-zero-no-unit false positives for functions inside of math functions (#​5245).

v13.12.0

Compare Source

  • Added: named-grid-areas-no-invalid rule (#​5167).
  • Added: ignore: ["single-declaration"] to declaration-block-trailing-semicolon (#​5165).
  • Fixed: *-no-unknown false positives (#​5158).
  • Fixed: selector-pseudo-class-no-unknown false positives for :autofill (#​5171).

v13.11.0

Compare Source

  • Added: exceptions and severity options to report* configuration object properties (#​5143).

v13.10.0

Compare Source

  • Added: ignoreDisables, reportNeedlessDisables, reportInvalidScopeDisables and reportDescriptionlessDisables configuration object properties (#​5126).
  • Added: declaration-block-no-duplicate-custom-properties rule (#​5125).
  • Fixed: alpha-value-notation false negatives for CSS Variables (#​5130).

v13.9.0

Compare Source

  • Added: TAP formatter (#​5062).
  • Fixed: incorrect exit code when using --report options (#​5079).
  • Fixed: color-hex-case false negatives for css-in-js object notation (#​5101).
  • Fixed: color-hex-length false negatives for css-in-js object notation (#​5106).
  • Fixed: selector-attribute-name-disallowed-list false positives for valueless attribute selectors (#​5060).

v13.8.0

Compare Source

  • Deprecated: StylelintStandaloneReturnValue.reportedDisables, .descriptionlessDisables, .needlessDisables, and .invalidScopeDisables. .reportedDisables will always be empty and the other properties will always be undefined, since these errors now show up in .results instead (#​4973).
  • Added: disable comments that are reported as errors for various reasons are now reported as standard lint errors rather than a separate class of errors that must be handled specially (#​4973).
  • Added: comment-pattern rule (#​4962).
  • Added: selector-attribute-name-disallowed-list rule (#​4992).
  • Added: ignoreAtRules[] to property-no-unknown (#​4965).
  • Fixed: *-notation false negatives for dollar variables (#​5031).
  • Fixed: *-pattern missing configured pattern in problem messages (#​4975).

v13.7.2

Compare Source

  • Fixed: regression for disable commands and adjacent double-slash comments (#​4950).
  • Fixed: use of full file path without converting it to glob (#​4931).

v13.7.1

Compare Source

  • Fixed: double-slash disable comments when followed by another comment (#​4913).

v13.7.0

Compare Source

  • Deprecated: *-blacklist, *-requirelist and *-whitelist rules in favor of the new *-disallowed-list, *-required-list and *-allowed-list ones (#​4845):
    • at-rule-blacklist. Use at-rule-disallowed-list instead.
    • at-rule-property-requirelist. Use at-rule-property-required-list instead.
    • at-rule-whitelist. Use at-rule-allowed-list instead.
    • comment-word-blacklist. Use comment-word-disallowed-list instead.
    • declaration-property-unit-blacklist. Use declaration-property-unit-disallowed-list instead.
    • declaration-property-unit-whitelist. Use declaration-property-unit-allowed-list instead.
    • declaration-property-value-blacklist. Use declaration-property-value-disallowed-list instead.
    • declaration-property-value-whitelist. Use declaration-property-value-allowed-list instead.
    • function-blacklist. Use function-disallowed-list instead.
    • function-url-scheme-blacklist. Use function-url-scheme-disallowed-list instead.
    • function-url-scheme-whitelist. Use function-url-scheme-allowed-list instead.
    • function-whitelist. Use function-allowed-list instead.
    • media-feature-name-blacklist. Use media-feature-name-disallowed-list instead.
    • media-feature-name-value-whitelist. Use media-feature-name-value-allowed-list instead.
    • media-feature-name-whitelist. Use media-feature-name-allowed-list instead.
    • property-blacklist. Use property-disallowed-list instead.
    • property-whitelist. Use property-allowed-list instead.
    • selector-attribute-operator-blacklist. Use selector-attribute-operator-disallowed-list instead.
    • selector-attribute-operator-whitelist. Use selector-attribute-operator-allowed-list instead.
    • selector-combinator-blacklist. Use selector-combinator-disallowed-list instead.
    • selector-combinator-whitelist. Use selector-combinator-allowed-list instead.
    • selector-pseudo-class-blacklist. Use selector-pseudo-class-disallowed-list instead.
    • selector-pseudo-class-whitelist. Use selector-pseudo-class-allowed-list instead.
    • selector-pseudo-element-blacklist. Use selector-pseudo-element-disallowed-list instead.
    • selector-pseudo-element-whitelist. Use selector-pseudo-element-allowed-list instead.
    • unit-blacklist. Use unit-disallowed-list instead.
    • unit-whitelist. Use unit-allowed-list instead.
  • Added: syntax object acceptance to customSyntax option (#​4839).
  • Added: support for *.cjs config files (#​4905).
  • Added: support for descriptions in Stylelint command comments (#​4848).
  • Added: reportDescriptionlessDisables flag (#​4907).
  • Added: reportDisables secondary option (#​4897).
  • Added: *-no-vendor-prefix autofix (#​4859).
  • Added: ignoreComments[] to comment-empty-line-before (#​4841).
  • Added: ignoreContextFunctionalPseudoClasses to selector-max-id (#​4835).
  • Fixed: inconsistent trailing newlines in CLI error output (#​4876).
  • Fixed: support for multi-line disable descriptions (#​4895).
  • Fixed: support for paths with parentheses (#​4867).
  • Fixed: selector-max-* (except selector-max-type) false negatives for where, is, nth-child and nth-last-child (#​4842).
  • Fixed: length-zero-no-unit TypeError for custom properties fallback (#​4860).
  • Fixed: selector-combinator-space-after false positives for trailing combinator (#​4878).

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

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

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


  • If you want to rebase/retry this MR, click this checkbox.

This MR has been generated by Renovate Bot.

Edited by renovate-bot

Merge request reports