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 @@