From 9a9bb7d2bb0ce4d87d4bba490da6a9d176a5eef0 Mon Sep 17 00:00:00 2001 From: Saarthak Maini <94912101+SaarthakMaini@users.noreply.github.com> Date: Tue, 28 Mar 2023 13:55:53 +0530 Subject: [PATCH] [JENKINS-70779] Address Stylelint 15.x Deprecations (#7769) These rules will still work in the current release of stylelint, but they would be removed in the next major release. --- war/.stylelintrc.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/war/.stylelintrc.js b/war/.stylelintrc.js index dbae58c7382c..8804c72d3db4 100644 --- a/war/.stylelintrc.js +++ b/war/.stylelintrc.js @@ -2,13 +2,6 @@ module.exports = { extends: "stylelint-config-standard", customSyntax: "postcss-less", rules: { - indentation: null, - linebreaks: "unix", - "max-line-length": 150, - "selector-list-comma-newline-after": null, - "selector-list-comma-space-after": null, - "value-list-comma-newline-after": null, - "declaration-colon-newline-after": null, "no-descending-specificity": null, "selector-class-pattern": "[a-z]", "selector-id-pattern": "[a-z]", @@ -20,7 +13,6 @@ module.exports = { camelCaseSvgKeywords: true, }, ], - "string-quotes": "double", "property-no-vendor-prefix": null, "at-rule-no-vendor-prefix": null, "color-function-notation": "legacy",