From 742c6cc124d409d6ca711c4f16880b7cad524f66 Mon Sep 17 00:00:00 2001 From: Ammarpad Date: Tue, 29 Dec 2020 14:12:23 +0100 Subject: [PATCH] stylelintrc.json: Remove unused pattern This was recently added in I276325d to allow utilizing the exception in CSS file but subsequent iterations of the patch voided the need for this exception, but this file was not updated. Change-Id: I67cbebe6ba541ca0a3b1ff4a731d949a1d88c994 --- .stylelintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index 09a4c27678e..43f499b5a63 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -1,7 +1,7 @@ { "extends": "stylelint-config-wikimedia", "rules": { - "selector-class-pattern": "^((mw|oo-ui)-|(wikitable|(toc(|toggle|hidden))|client-(no)?js)|sitedir-(ltr|rtl)$)", + "selector-class-pattern": "^((mw|oo-ui)-|(wikitable|(toc(|toggle|hidden))|client-(no)?js)$)", "no-descending-specificity": null, "selector-max-id": null }