Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for plugin objects as config values #6481

Merged
merged 7 commits into from
Dec 1, 2022

Conversation

phoenisx
Copy link
Contributor

Closes #6452

Allow users to pass Plugin functions, as well as string names for plugin config.

@changeset-bot
Copy link

changeset-bot bot commented Nov 18, 2022

🦋 Changeset detected

Latest commit: 7615c75

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
stylelint Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@phoenisx
Copy link
Contributor Author

Need some help fixing the typing errors. The changes are logically correct, but I am not able to understand how to fix the typing errors. 🤦🏽

@phoenisx
Copy link
Contributor Author

The changes should also work with mergeConfigs() if a developer uses the same plugin import since stylelint runs on a single nodejs process.

PostCSS instead uses a format to pass an array of objects, which is helpful, because each plugin has a name, and if a plugin-name overlaps, we can exclude the previous one, while merging configs.

Not sure which pattern is preferred here. I feel the latter would provide more flexibility , but would be a breaking change, and we will have to keep the API backwards compatible, just in case.

Copy link
Member

@ybiquitous ybiquitous left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@phoenisx Thanks for creating the pull request. I've left a suggestion comment to fix the type error.

types/stylelint/index.d.ts Outdated Show resolved Hide resolved
Copy link
Member

@ybiquitous ybiquitous left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In addition, could you add test cases about the new feature to lib/__tests__/plugins.test.js?

@jeddy3 jeddy3 changed the title [Feat] enable passing plugin functions as config value Add support for plugin functions as config values Nov 18, 2022
Copy link
Member

@ybiquitous ybiquitous left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for adding test cases! Just in case, could you add more expectations, as I suggested?

lib/__tests__/plugins.test.js Show resolved Hide resolved
lib/__tests__/plugins.test.js Show resolved Hide resolved
@phoenisx phoenisx force-pushed the fix/issue-6452 branch 2 times, most recently from 60d5954 to 0bff714 Compare November 20, 2022 15:35
Copy link
Member

@ybiquitous ybiquitous left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, LGTM 👍🏼

@ybiquitous ybiquitous mentioned this pull request Nov 21, 2022
6 tasks
@phoenisx
Copy link
Contributor Author

Shall I merge this, if this Looks good to everyone here?

@ybiquitous
Copy link
Member

@phoenisx I noticed it might be necessary to update the doc for plugins:

Could you please update it?

Copy link
Member

@jeddy3 jeddy3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@phoenisx Thanks for the pull request. Almost looks ready to me. I've requested one change to the docs.

Comment on lines 237 to 246
- stylelint plugin object of format

```js
{
ruleName: "plugin-name",
rule: function plugin(opts) { /* Plugin Code */ }
}
```

> Read more about writing [Stylint Plugins here](../developer-guide/plugins.md).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's revert this change and then change the preceding paragraph so we don't mix terms like locators and functions:

"To use one, add a "plugins" array to your config, containing either plugin functions or "locaters" identifying the plugins you want to use. As with extends, above, a "locater" can be either a:"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also agree with @jeddy3's suggestion. Furthermore, "plugin objects" may be more accurate than "plugin functions" because a Stylelint plugin is an object:

module.exports = function createPlugin(ruleName, rule) {
return {
ruleName,
rule,
};
};

@ybiquitous ybiquitous self-requested a review November 29, 2022 23:16
@phoenisx
Copy link
Contributor Author

phoenisx commented Dec 1, 2022

Sure. I’ll fix this once I am back home 👍

@jeddy3 jeddy3 changed the title Add support for plugin functions as config values Add support for plugin objects as config values Dec 1, 2022
Copy link
Member

@jeddy3 jeddy3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks.

I made the doc change.

Copy link
Member

@ybiquitous ybiquitous left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you. LGTM 👍🏼

@ybiquitous
Copy link
Member

Oops, a changelog entry is needed.

@ybiquitous
Copy link
Member

Changelog added via 40a3c1a

@ybiquitous ybiquitous merged commit 1916118 into stylelint:main Dec 1, 2022
@ybiquitous
Copy link
Member

@phoenisx Thanks for the contribution!

@phoenisx phoenisx deleted the fix/issue-6452 branch December 6, 2022 07:35
@phoenisx
Copy link
Contributor Author

phoenisx commented Dec 6, 2022

Thanks to you all for making the change, while I was away 🙇🏽

renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 15, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


##### [\`v14.16.1\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).
##### [\`v14.16.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).
##### [\`v14.15.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).
##### [\`v14.14.1\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).
##### [\`v14.14.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).
##### [\`v14.13.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).
##### [\`v14.12.1\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).
##### [\`v14.12.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 15, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


##### [\`v14.16.1\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).
##### [\`v14.16.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).
##### [\`v14.15.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).
##### [\`v14.14.1\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).
##### [\`v14.14.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).
##### [\`v14.13.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).
##### [\`v14.12.1\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).
##### [\`v14.12.0\`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 15, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


## [v14.16.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).


## [v14.16.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).


## [v14.15.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).


## [v14.14.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).


## [v14.14.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).


## [v14.13.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).


## [v14.12.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).


## [v14.12.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 15, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


## [v14.16.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).


## [v14.16.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).


## [v14.15.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).


## [v14.14.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).


## [v14.14.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).


## [v14.13.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).


## [v14.12.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).


## [v14.12.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 16, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


## [v14.16.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).


## [v14.16.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).


## [v14.15.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).


## [v14.14.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).


## [v14.14.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).


## [v14.13.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).


## [v14.12.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).


## [v14.12.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 17, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


## [v14.16.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).


## [v14.16.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).


## [v14.15.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).


## [v14.14.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).


## [v14.14.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).


## [v14.13.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).


## [v14.12.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).


## [v14.12.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 18, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


## [v14.16.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).


## [v14.16.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).


## [v14.15.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).


## [v14.14.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).


## [v14.14.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).


## [v14.13.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).


## [v14.12.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).


## [v14.12.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 19, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


## [v14.16.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).


## [v14.16.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).


## [v14.15.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).


## [v14.14.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).


## [v14.14.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).


## [v14.13.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).


## [v14.12.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).


## [v14.12.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
renovate bot added a commit to andrei-picus-tink/auto-renovate that referenced this pull request Aug 21, 2024
| datasource | package   | from    | to      |
| ---------- | --------- | ------- | ------- |
| npm        | stylelint | 14.11.0 | 14.16.1 |


## [v14.16.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14161)

-   Fixed: `customSyntax` resolution with `configBasedir` ([#6536](stylelint/stylelint#6536)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `declaration-block-no-duplicate-properties` autofix for `!important` ([#6528](stylelint/stylelint#6528)) ([@sidx1024](https://github.com/sidx1024)).
-   Fixed: `function-no-unknown` false positives for `scroll`, `-webkit-gradient`, `color-stop`, `from`, and `to` ([#6539](stylelint/stylelint#6539)) ([@Mouvedia](https://github.com/Mouvedia)).
-   Fixed: `value-keyword-case` false positives for mixed case `ignoreFunctions` option ([#6517](stylelint/stylelint#6517)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: unexpected `output` in Node.js API lint result when any rule contains `disableFix: true` ([#6543](stylelint/stylelint#6543)) ([@adrianjost](https://github.com/adrianjost)).


## [v14.16.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14160)

-   Added: `media-feature-range-notation` rule ([#6497](stylelint/stylelint#6497)) ([@jeddy3](https://github.com/jeddy3)).
-   Added: support for plugin objects as config values ([#6481](stylelint/stylelint#6481)) ([@phoenisx](https://github.com/phoenisx)).
-   Fixed: incorrect output by all formatters except for `json` ([#6480](stylelint/stylelint#6480)) ([@ybiquitous](https://github.com/ybiquitous)).


## [v14.15.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14150)

-   Added: `--globby-options` flag ([#6437](stylelint/stylelint#6437)) ([@sidverma32](https://github.com/sidverma32)).
-   Added: custom message formatting for `at-rule-disallowed-list`, `declaration-property-unit-disallowed-list`, `declaration-property-value-disallowed-list`, `function-disallowed-list`, and `property-disallowed-list` ([#6463](stylelint/stylelint#6463)) ([@chloerice](https://github.com/chloerice)).
-   Added: support autofix with `checkAgainstRule` ([#6466](stylelint/stylelint#6466)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support for reporting with custom severity ([#6444](stylelint/stylelint#6444)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Added: support to `checkAgainstRule` with custom rules ([#6460](stylelint/stylelint#6460)) ([@aaronccasanova](https://github.com/aaronccasanova)).
-   Fixed: tally output of `string` formatter colorized ([#6443](stylelint/stylelint#6443)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: usage of the `import-lazy` package to fit bundlers ([#6449](stylelint/stylelint#6449)) ([@phoenisx](https://github.com/phoenisx)).


## [v14.14.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14141)

-   Fixed: `declaration-block-no-redundant-longhand-properties` false positives for `inherit` keyword ([#6419](stylelint/stylelint#6419)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `shorthand-property-no-redundant-values` message to be consistent ([#6417](stylelint/stylelint#6417)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `unit-no-unknown` false positives for `*vi` & `*vb` viewport units ([#6428](stylelint/stylelint#6428)) ([@sidverma32](https://github.com/sidverma32)).


## [v14.14.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14140)

-   Added: `*-pattern` custom message formatting ([#6391](stylelint/stylelint#6391)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `block-no-empty` false positives for `reportNeedlessDisables` ([#6381](stylelint/stylelint#6381)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `printf`-like formatting for custom messages ([#6389](stylelint/stylelint#6389)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `unit-no-unknown` false positives for font-relative length units ([#6374](stylelint/stylelint#6374)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: false negatives on second run for cache and `severity` option ([#6384](stylelint/stylelint#6384)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: TS compilation error due to needless `file-entry-cache` import ([#6393](stylelint/stylelint#6393)) ([@adidahiya](https://github.com/adidahiya)).


## [v14.13.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14130)

-   Added: `cacheStrategy` option ([#6357](stylelint/stylelint#6357)) ([@kaorun343](https://github.com/kaorun343)).
-   Fixed: cache refresh when config is changed ([#6356](stylelint/stylelint#6356)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `selector-pseudo-element-no-unknown` false positives for `::highlight` pseudo-element ([#6367](stylelint/stylelint#6367)) ([@jathak](https://github.com/jathak)).


## [v14.12.1](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14121)

-   Fixed: `font-weight-notation` messages ([#6350](stylelint/stylelint#6350)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: type declarations for custom message arguments ([#6354](stylelint/stylelint#6354)) ([@stof](https://github.com/stof)).


## [v14.12.0](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#14120)

-   Added: support for multiple `--ignore-path` flags ([#6345](stylelint/stylelint#6345)) ([@kimulaco](https://github.com/kimulaco)).
-   Added: experimental support for custom message arguments ([#6312](stylelint/stylelint#6312)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `declaration-block-no-duplicate-properties` autofix ([#6296](stylelint/stylelint#6296)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Added: `font-weight-notation` autofix ([#6347](stylelint/stylelint#6347)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: `ignore: ["inside-block"]` and `splitList` to `selector-disallowed-list` ([#6334](stylelint/stylelint#6334)) ([@mattmanuel90](https://github.com/mattmanuel90)).
-   Added: regex support for `ignorePseudoClasses` option of `selector-pseudo-class-no-unknown` ([#6316](stylelint/stylelint#6316)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignorePseudoElements` option of `selector-pseudo-element-no-unknown` ([#6317](stylelint/stylelint#6317)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreSelectors` option of `selector-no-vendor-prefix` ([#6327](stylelint/stylelint#6327)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Added: regex support for `ignoreTypes` option of `selector-type-case` ([#6326](stylelint/stylelint#6326)) ([@ybiquitous](https://github.com/ybiquitous)).
-   Fixed: `*-no-unknown` false positives for container queries ([#6318](stylelint/stylelint#6318)) ([@fpetrakov](https://github.com/fpetrakov)).
-   Fixed: `font-family-name-quotes` false positives for interpolation and shorthand ([#6335](stylelint/stylelint#6335)) ([@kimulaco](https://github.com/kimulaco)).
-   Fixed: `time-min-milliseconds` incorrect location for matching violating times ([#6319](stylelint/stylelint#6319)) ([@kawaguchi1102](https://github.com/kawaguchi1102)).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Add support for JS functions in plugins list in Stylelint config
3 participants