From ca0e0f6ad61ec0fad48b3d84a1d71adb9bea4e44 Mon Sep 17 00:00:00 2001 From: moisseev Date: Wed, 7 Jun 2023 13:11:59 +0300 Subject: [PATCH] [Test] Fix Stylelint warnings --- .stylelintrc.json | 12 ++++-------- package.json | 3 +-- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index 90b13d0..7e45fcb 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -4,17 +4,13 @@ { "files": ["**/*.html"], "customSyntax": "postcss-html" - }, - { - "files": ["**/*.js"], - "customSyntax": "@stylelint/postcss-css-in-js" } ], + "ignoreFiles": ["**/*.js"], "rules": { - "at-rule-empty-line-before": null, - "color-hex-length": null, - "comment-empty-line-before": null, - "indentation": 4, + "at-rule-empty-line-before": null, + "color-hex-length": null, + "comment-empty-line-before": null, "number-leading-zero": null, "rule-empty-line-before": null } diff --git a/package.json b/package.json index 5f2a18a..6ebf886 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,6 @@ "eslint": "*", "eslint-plugin-html": "*", "stylelint-config-standard": "*", - "postcss-html": "*", - "@stylelint/postcss-css-in-js": "*" + "postcss-html": "*" } }