From 4439303f90bbb7d9d3241d8fe2397921182a8fac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Wed, 21 Sep 2016 01:14:42 -0400 Subject: [PATCH] Ignore consecutive duplicates in stylelint for prefixed values This is already necessary globally and will become even more so as we are adding flexbox pieces to the UI. See http://stylelint.io/user-guide/rules/declaration-block-no-duplicate-properties/. --- .stylelintrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.stylelintrc b/.stylelintrc index d346c411..3351866c 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -55,7 +55,9 @@ "number-leading-zero": "never", "number-no-trailing-zeros": true, "length-zero-no-unit": true, - "declaration-block-no-duplicate-properties": true, + "declaration-block-no-duplicate-properties": [true, { + "ignore": ["consecutive-duplicates"] + }], "declaration-block-no-shorthand-property-overrides": true, "rule-non-nested-empty-line-before": ["always-multi-line", { "ignore": ["after-comment"]