From 42c59d8aef2cd475e6a636b410be2ece5bd71b72 Mon Sep 17 00:00:00 2001 From: Maksim Ivanov Date: Mon, 25 Sep 2023 11:58:08 +0400 Subject: [PATCH] feat(stylelint-config): disable order rules for taiga (#58) --- projects/stylelint-config/off.js | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/stylelint-config/off.js b/projects/stylelint-config/off.js index cda93da7..214e11cb 100644 --- a/projects/stylelint-config/off.js +++ b/projects/stylelint-config/off.js @@ -81,5 +81,6 @@ module.exports = { 'declaration-block-no-redundant-longhand-properties': null, 'no-descending-specificity': null, 'selector-max-specificity': null, + 'order/order': null, }, };