build(deps): bump stylelint from 14 to 16 #4090
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several updates to the project's stylelint configuration and some improvements to the LESS stylesheets. The most important changes include updating the stylelint dependencies, revising the stylelint configuration file, and modifying the LESS stylesheets for better styling consistency.
Updates to stylelint dependencies:
package.json
: Updatedstylelint
to version 16.12.0 and replacedstylelint-config-prettier
andstylelint-config-standard
withstylelint-config-standard-less
.Revisions to stylelint configuration:
stylelint.config.js
: Simplified the configuration by removing numerous rules and extending only fromstylelint-config-standard-less
.Improvements to LESS stylesheets:
src/styles/common.less
: Added an import statement fornormalize.less
to ensure consistent styling across different browsers.src/styles/scaffolding.less
: Changed the-webkit-tap-highlight-color
property value fromrgba(0, 0, 0, 0)
totransparent
for better touch feedback.src/styles/typography.less
: Moved the styling forsmall
elements within headings (h1
toh6
) to a separate block for better maintainability.