Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Update dependency stylelint to v13.13.1 #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 7, 2020

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
stylelint (source) 13.6.1 -> 13.13.1 age adoption passing confidence

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: Enabled.

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 Mend Renovate. View repository job log here.

@vercel
Copy link

vercel bot commented Sep 7, 2020

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/rshackleton/nextjs-kontent/2e9aa27xn
✅ Preview: Failed

@renovate renovate bot changed the title Update dependency stylelint to v13.7.0 Update dependency stylelint to v13.7.1 Sep 11, 2020
@renovate renovate bot changed the title Update dependency stylelint to v13.7.1 Update dependency stylelint to v13.7.2 Sep 25, 2020
@renovate renovate bot changed the title Update dependency stylelint to v13.7.2 Update dependency stylelint to v13.8.0 Nov 25, 2020
@renovate renovate bot changed the title Update dependency stylelint to v13.8.0 Update dependency stylelint to v13.9.0 Jan 24, 2021
@renovate renovate bot changed the title Update dependency stylelint to v13.9.0 Update dependency stylelint to v13.10.0 Feb 11, 2021
@renovate renovate bot force-pushed the renovate/stylelint-13.x branch from 013b51d to 2e924a2 Compare April 26, 2021 17:18
@renovate renovate bot changed the title Update dependency stylelint to v13.10.0 Update dependency stylelint to v13.13.0 Apr 26, 2021
@renovate renovate bot force-pushed the renovate/stylelint-13.x branch from 2e924a2 to ddec7f3 Compare May 9, 2021 22:55
@renovate renovate bot changed the title Update dependency stylelint to v13.13.0 Update dependency stylelint to v13.13.1 May 9, 2021
@renovate
Copy link
Author

renovate bot commented Mar 24, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant