From deaa36c331dfb12a023c9cd957778b299345a155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20de=20Vasconcelos?= Date: Wed, 29 May 2024 18:43:18 +0100 Subject: [PATCH] Allow ms on transition --- rules/css.rule.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rules/css.rule.js b/rules/css.rule.js index 7c41ff7..10a0cf2 100644 --- a/rules/css.rule.js +++ b/rules/css.rule.js @@ -9,6 +9,9 @@ export default { ], fix: true, rules: { + 'declaration-property-unit-allowed-list': { + '/^transition/': ['ms'], + }, 'unit-allowed-list': ['px', '%'], }, };