From be2e0a1e261e1109435ed7029acaeb331c2903f4 Mon Sep 17 00:00:00 2001 From: Strek Date: Fri, 4 Nov 2022 11:19:39 +0530 Subject: [PATCH] chore: use same color notation as main repo --- .stylelintrc.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.stylelintrc.js b/.stylelintrc.js index 8a6eecc85..1c5bd0de1 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -1,16 +1,16 @@ module.exports = { extends: ["stylelint-config-standard-scss"], rules: { - "alpha-value-notation": null, + "alpha-value-notation": "number", "at-rule-empty-line-before": null, - "color-function-notation": null, + "color-function-notation": "legacy", "color-hex-case": null, "custom-property-empty-line-before": null, "custom-property-pattern": null, "declaration-block-no-duplicate-properties": null, "declaration-block-no-redundant-longhand-properties": null, "declaration-block-no-shorthand-property-overrides": null, - "hue-degree-notation": null, + "hue-degree-notation": "number", indentation: 4, "max-line-length": null, "no-descending-specificity": null,