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 --globby-options flag #6437

Merged
merged 18 commits into from
Nov 11, 2022
Merged

Conversation

sidverma32
Copy link
Contributor

Which issue, if any, is this issue related to?

closes #6109

@changeset-bot
Copy link

changeset-bot bot commented Oct 31, 2022

🦋 Changeset detected

Latest commit: 9913d85

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

@sidverma32 sidverma32 marked this pull request as ready for review October 31, 2022 13:01
@jeddy3 jeddy3 changed the title Added: Support for --globby-options flag Add --globby-options flag Oct 31, 2022
@silversonicaxel
Copy link

Should you also update this documentation file https://github.com/stylelint/stylelint/blob/main/docs/user-guide/usage/options.md ?

@sidverma32
Copy link
Contributor Author

Should you also update this documentation file https://github.com/stylelint/stylelint/blob/main/docs/user-guide/usage/options.md ?

Sure , Updated!

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.

@sidverma32 Thanks for creating the pull request. Please consider addressing my reviews.

lib/cli.js Outdated Show resolved Hide resolved
lib/cli.js Outdated Show resolved Hide resolved
lib/cli.js Outdated Show resolved Hide resolved
docs/user-guide/usage/cli.md Outdated Show resolved Hide resolved
docs/user-guide/usage/cli.md Outdated Show resolved Hide resolved
lib/cli.js 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.

Thanks for addressing the reviews! With a little more brushing up, I believe this PR is ready to merge.

lib/cli.js Outdated Show resolved Hide resolved
lib/__tests__/cli.test.js Outdated Show resolved Hide resolved
lib/__tests__/cli.test.js Show resolved Hide resolved
docs/user-guide/usage/cli.md Outdated Show resolved Hide resolved
docs/user-guide/usage/cli.md Outdated Show resolved Hide resolved
docs/user-guide/usage/options.md Outdated Show resolved Hide resolved
lib/cli.js 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.

Thank you for improving the code. We are very close to the merge.

lib/cli.js Outdated Show resolved Hide resolved
lib/cli.js Outdated Show resolved Hide resolved
lib/__tests__/cli.test.js 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.

Thank you. LGTM 👍🏼

@sidverma32
Copy link
Contributor Author

Thank you. LGTM 👍🏼

Thanks a lot for the guidance and huge learning experience for me . I think this feature roll-out will give end user's a better option for dot files :)

@ybiquitous ybiquitous merged commit b54083c into stylelint:main Nov 11, 2022
@silversonicaxel
Copy link

amazing guys

@silversonicaxel
Copy link

silversonicaxel commented Nov 14, 2022

hello everyone,
I updated in my project the stylelint libs to fix my hidden folders linting issues.

    "stylelint": "^14.15.0",
    "stylelint-config-prettier": "^9.0.4",
    "stylelint-config-standard": "^29.0.0",
    "stylelint-config-standard-scss": "^6.1.0",
    "stylelint-order": "^5.0.0",
    "stylelint-prettier": "^2.0.0",
    "stylelint-scss": "^4.3.0",
    "stylelint-selector-bem-pattern": "^2.1.1",

I made some tests in a Storybook folder where the application lives.

I just created a linting issue in two files that are not in hidden folders.

with --go and --globby-options applied to stylelint all works still as expected.

Then I created a linting issue in two files that are in hidden folders in a secondary level.

apps/foundation-storybook/.storybook/sb-theme/styles/sb-sidebar.css

and

apps/foundation-storybook/.storybook/sb-theme/styles/sb-sidebar.scss

but also in primary level

.test/sb-sidebar.css

and

.test/sb-sidebar.css

and here is the issue

#storybook-explorer-tree .sidebar-item {
  padding-bottom: 8px;
  font-size: 16px;
  padding-top: 8px;
}

where font-size should be first css property and padding-bottom the second one.

and these are the commands of package.json

    "lint:scss": "stylelint --fix '**/*.scss' --globby-options",
    "lint:css": "stylelint --fix '**/*.css' --globby-options",

and

    "lint:scss": "stylelint --fix '**/*.scss' --go",
    "lint:css": "stylelint --fix '**/*.css' --go",

but any fix is done.

I am not sure if this is still intended, but I fear something is not working as expected.
any opinions, ideas about it?

thanks

@ybiquitous
Copy link
Member

@silversonicaxel Did you pass a value to the --globby-options flag like this?

stylelint --fix '**/*.scss' --globby-options '{"dot":true}'

@silversonicaxel
Copy link

Indeed my bad, it works, thanks a lot

infotexture added a commit to infotexture/dita-bootstrap.extension that referenced this pull request Jan 8, 2024
Stylelint ignores hidden folders by default, so we need to pass --globby-options '{"dot":true}' to ensure that CSS files in `.github` workflow folders are checked.

For background, see:
- stylelint/stylelint#6109
- stylelint/stylelint#6437 (comment)
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 --globby-options flag
3 participants