From 3294df0325886893f0b2c359cf721e661a233197 Mon Sep 17 00:00:00 2001 From: Pleroma User <66706-pleromian@users.noreply.git.pleroma.social> Date: Sun, 27 Jul 2025 17:28:21 +0000 Subject: [PATCH] Lint some things --- .stylelintrc.json | 2 ++ changelog.d/linter.skip | 0 src/App.scss | 2 +- src/components/block_card/block_card.vue | 7 ++-- src/components/emoji_picker/emoji_picker.scss | 2 ++ src/components/gallery/gallery.vue | 2 ++ src/components/mute_card/mute_card.vue | 7 ++-- .../settings_modal/tabs/filtering_tab.vue | 4 +-- .../settings_modal/tabs/general_tab.vue | 5 ++- .../action_button_container.vue | 2 +- src/components/status_body/status_body.scss | 4 +++ src/components/user_card/user_card.scss | 2 ++ .../user_timed_filter_modal.vue | 33 +++++++++++++++---- 13 files changed, 56 insertions(+), 16 deletions(-) create mode 100644 changelog.d/linter.skip diff --git a/.stylelintrc.json b/.stylelintrc.json index c91107595..afdfd5f5b 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -12,6 +12,8 @@ "custom-property-pattern": null, "keyframes-name-pattern": null, "scss/operator-no-newline-after": null, + "declaration-property-value-no-unknown": true, + "scss/declaration-property-value-no-unknown": true, "declaration-block-no-redundant-longhand-properties": [ true, { diff --git a/changelog.d/linter.skip b/changelog.d/linter.skip new file mode 100644 index 000000000..e69de29bb diff --git a/src/App.scss b/src/App.scss index d56306c9e..59995664c 100644 --- a/src/App.scss +++ b/src/App.scss @@ -1075,7 +1075,7 @@ option { scale: 1.0063 0.9938; translate: 0 -10%; transform: rotateZ(var(--defaultZ)); - animation-timing-function: ease-in-ou; + animation-timing-function: ease-in-out; } 90% { diff --git a/src/components/block_card/block_card.vue b/src/components/block_card/block_card.vue index 9f64a8e8c..90b9a2b16 100644 --- a/src/components/block_card/block_card.vue +++ b/src/components/block_card/block_card.vue @@ -1,7 +1,10 @@