diff options
author | silverwind <me@silverwind.io> | 2023-06-18 10:38:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-18 08:38:47 +0000 |
commit | f47744c3f11953a48a30b40930887764041552a4 (patch) | |
tree | 296b10f92d334b7da659d3389fa1a874d03e29f1 /.stylelintrc.yaml | |
parent | 4e2f1ee58d1aa49f85c3a28a4f96e915f12bdb21 (diff) | |
download | gitea-f47744c3f11953a48a30b40930887764041552a4.tar.gz gitea-f47744c3f11953a48a30b40930887764041552a4.zip |
Update JS dependencies, remove space after emoji completion (#25266)
- Update all JS dependencies
- Enable stylint
[`media-feature-name-value-no-unknown`](https://stylelint.io/user-guide/rules/media-feature-name-value-no-unknown)
- Make use of new features in webpack and text-expander-element
- Tested Swagger and Mermaid
To explain the `text-expander-element` change: Before this version, the
element added a unavoidable space after emoji completion. Now that
https://github.com/github/text-expander-element/pull/36 is in, we gain
control over this space and I opted to remove it for emoji completion
and retain it for `@` mentions.
---------
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to '.stylelintrc.yaml')
-rw-r--r-- | .stylelintrc.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.stylelintrc.yaml b/.stylelintrc.yaml index 69d23a01db..8aeb706182 100644 --- a/.stylelintrc.yaml +++ b/.stylelintrc.yaml @@ -82,6 +82,7 @@ rules: media-feature-name-no-vendor-prefix: true media-feature-name-unit-allowed-list: null media-feature-name-value-allowed-list: null + media-feature-name-value-no-unknown: true media-feature-range-notation: null named-grid-areas-no-invalid: true no-descending-specificity: null |