From cef97885f58dcb092bf799694e2f17a02682fe33 Mon Sep 17 00:00:00 2001 From: chansuke Date: Sun, 8 Sep 2024 00:30:56 +0900 Subject: [PATCH] fix: update configuration of lint rule --- .../src/lint/nursery/no_duplicate_custom_properties.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/biome_css_analyze/src/lint/nursery/no_duplicate_custom_properties.rs b/crates/biome_css_analyze/src/lint/nursery/no_duplicate_custom_properties.rs index 3fbb223d44b6..d112dfe878d8 100644 --- a/crates/biome_css_analyze/src/lint/nursery/no_duplicate_custom_properties.rs +++ b/crates/biome_css_analyze/src/lint/nursery/no_duplicate_custom_properties.rs @@ -38,8 +38,8 @@ declare_lint_rule! { version: "next", name: "noDuplicateCustomProperties", language: "css", - recommended: false, - sources: &[RuleSource::Stylelint("declaration-block-no-duplicate-properties")], + recommended: true, + sources: &[RuleSource::Stylelint("declaration-block-no-duplicate-custom-properties")], } }