-
-
Notifications
You must be signed in to change notification settings - Fork 986
Comparing changes
Open a pull request
base repository: stylelint/stylelint
base: 16.2.0
head repository: stylelint/stylelint
compare: 16.2.1
- 18 commits
- 44 files changed
- 6 contributors
Commits on Jan 20, 2024
-
Document simplified website releasing in maintainer guide (#7473)
Update maintainer guide for simplified website releasing See stylelint/stylelint.io#385
Configuration menu - View commit details
-
Copy full SHA for 6a4397c - Browse repository at this point
Copy the full SHA 6a4397cView commit details -
Fix
selector-max-specificityfalse positives withignoreSelectors…… option for `of <selector>` syntax (#7475) ```json {"ignoreSelectors": [".foo"]} ``` ```css :nth-child(even of .foo) {} /* ↓ Calculates specificity ignoring 'of .foo' in `ignoreSelectors` */ :nth-child(even) {} ```
Configuration menu - View commit details
-
Copy full SHA for 34cdc97 - Browse repository at this point
Copy the full SHA 34cdc97View commit details -
Fix
report()error message responsibility for a missing node or lin……e number (#7474) Including a rule name in the error message helps us understand why an error happens. Co-authored-by: Richard Hallows <jeddy3@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for eebb786 - Browse repository at this point
Copy the full SHA eebb786View commit details
Commits on Jan 21, 2024
-
Document dependency name support for
--custom-formatterin CHANGELOG (#7481) This change retroactively adds a changelog item in the 16.0.0 section. For background of this change, see: #5192 (comment)
Configuration menu - View commit details
-
Copy full SHA for b741dea - Browse repository at this point
Copy the full SHA b741deaView commit details
Commits on Jan 22, 2024
-
Fix combinator example in
selector-max-compound-selectorsREADME (#……7485) A whitespace represents a *descendant combinator*.
Configuration menu - View commit details
-
Copy full SHA for 4ae7450 - Browse repository at this point
Copy the full SHA 4ae7450View commit details -
Fix
custom-property-no-missing-var-functionfalse positives for pro……perties that can contain author-defined identifiers (#7478)
Configuration menu - View commit details
-
Copy full SHA for 1263c03 - Browse repository at this point
Copy the full SHA 1263c03View commit details -
Bump rollup from 4.9.5 to 4.9.6 (#7489)
Bumps [rollup](https://github.com/rollup/rollup) from 4.9.5 to 4.9.6. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](rollup/rollup@v4.9.5...v4.9.6) --- updated-dependencies: - dependency-name: rollup dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for baaf8f7 - Browse repository at this point
Copy the full SHA baaf8f7View commit details -
Add GitHub action to change the label and add a warning comment on is…
…sues older than a month (#7486) Co-authored-by: Richard Hallows <jeddy3@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0073ab6 - Browse repository at this point
Copy the full SHA 0073ab6View commit details -
Provide repository info to
ghcommand in GitHub action (#7491)This fixes the following error in the GitHub action: ``` failed to run git: fatal: not a git repository (or any of the parent directories): .git ``` https://github.com/stylelint/stylelint/actions/runs/7609612527/job/20721207993#step:2:19 The failure reason is that the `gh` command tries reading the `.git` repository. This change provides the repository info through an environment variable supported by `gh`. (see also https://cli.github.com/manual/gh_help_environment)
Configuration menu - View commit details
-
Copy full SHA for e86c9cd - Browse repository at this point
Copy the full SHA e86c9cdView commit details -
Fix
selector-pseudo-class-no-unknownfalse positives for:seeking……, the media loading state and sound state pseudo-classes (#7490)
Configuration menu - View commit details
-
Copy full SHA for a889974 - Browse repository at this point
Copy the full SHA a889974View commit details -
Fix
validateOptionsto report when secondary option object is an em……pty object or null (#7476)
Configuration menu - View commit details
-
Copy full SHA for f02d168 - Browse repository at this point
Copy the full SHA f02d168View commit details -
Fix report flags not reporting on subsequent runs when cache is used (#…
…7483) The bug's reason is that the `stylelintError`/`stylelintWarning` properties in a lint result object are not set when `styelint-disable` comment problems are reported. Also, this change refactors the code around `styelint-disable` comments to make it more readable and prevent possible bugs. The new code uses [`Result#warn()`](https://postcss.org/api/#result-warn) in PostCSS for a comment node, like reporting a normal rule problem.
Configuration menu - View commit details
-
Copy full SHA for 382961f - Browse repository at this point
Copy the full SHA 382961fView commit details
Commits on Jan 29, 2024
-
Bump husky from 8.0.3 to 9.0.6 (#7500)
* Bump husky from 8.0.3 to 9.0.6 Bumps [husky](https://github.com/typicode/husky) from 8.0.3 to 9.0.6. - [Release notes](https://github.com/typicode/husky/releases) - [Commits](typicode/husky@v8.0.3...v9.0.6) --- updated-dependencies: - dependency-name: husky dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Follow husky v9 See https://github.com/typicode/husky/releases/tag/v9.0.1 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Masafumi Koba <473530+ybiquitous@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3de4eba - Browse repository at this point
Copy the full SHA 3de4ebaView commit details
Commits on Jan 30, 2024
-
This fixes the broken benchmark script (`npm run benchmark`) The error reason is that `rules[ruleName]` has returned a `Promise` since 16.0.0. ```sh-session $ npm run benchmark-rule -- value-keyword-case lower ... const rule = ruleFunc(primary, secondary, context); ^ TypeError: ruleFunc is not a function ... ``` Also, this changes `parserOptions.ecmaVersion` in the ESLint config to allow top-level `await`.Configuration menu - View commit details
-
Copy full SHA for 398d3a8 - Browse repository at this point
Copy the full SHA 398d3a8View commit details -
Fix
function-calc-no-unspaced-operatorperformance (#7505)How to measure: ```shell npm run -s benchmark-rule -- function-calc-no-unspaced-operator true ``` Before: ``` Warnings: 0 Mean: 125.72145828571429 ms Deviation: 14.960783775263804 ms ``` After: ``` Warnings: 0 Mean: 110.21394642857142 ms Deviation: 10.1318139617483 ms ```
Configuration menu - View commit details
-
Copy full SHA for 5e2eff7 - Browse repository at this point
Copy the full SHA 5e2eff7View commit details
Commits on Jan 31, 2024
-
Document CLI user guide to fix typo for
—custom-syntax(#7503)Configuration menu - View commit details
-
Copy full SHA for 328544d - Browse repository at this point
Copy the full SHA 328544dView commit details
Commits on Feb 1, 2024
-
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 52cb83f - Browse repository at this point
Copy the full SHA 52cb83fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c68274 - Browse repository at this point
Copy the full SHA 5c68274View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 16.2.0...16.2.1