From a9b88c0796f8c86b0ecf8b93c8089a5fecb3b690 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 7 Jan 2022 14:18:41 -0800 Subject: [PATCH] Use null to invalidate rules --- .stylelintrc.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.stylelintrc.js b/.stylelintrc.js index 0f20cfde4..68c68f894 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -13,8 +13,8 @@ module.exports = { "declarations" ], "indentation": 4, - "property-no-vendor-prefix": false, - "color-function-notation": false, - "declaration-block-no-redundant-longhand-properties": false, + "property-no-vendor-prefix": null, + "color-function-notation": null, + "declaration-block-no-redundant-longhand-properties": null, } };