From 0a1864356cf3d38a826ed3adcb7a3b0951407e9c Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Wed, 7 Feb 2018 08:52:17 +0000 Subject: [PATCH] Issue #2866817 by harsha012, Jo Fitzgerald, BrightBold, alexpott, joelpittet: Update stylelint rule no-empty-source to be consistent with Drupal's CSS standards --- core/.stylelintrc.json | 1 - core/themes/stark/css/layout.css | 8 ++++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/core/.stylelintrc.json b/core/.stylelintrc.json index e8c83471f457..7442c7aa2af8 100644 --- a/core/.stylelintrc.json +++ b/core/.stylelintrc.json @@ -9,7 +9,6 @@ "declaration-block-no-duplicate-properties": null, "function-linear-gradient-no-nonstandard-direction": null, "function-whitespace-after": null, - "no-empty-source": null, "no-unknown-animations": true, "number-leading-zero": "always", "plugin/no-browser-hacks": [true, { diff --git a/core/themes/stark/css/layout.css b/core/themes/stark/css/layout.css index e69de29bb2d1..ea49f696126a 100644 --- a/core/themes/stark/css/layout.css +++ b/core/themes/stark/css/layout.css @@ -0,0 +1,8 @@ +/** + * @file + * Presentational styles for Drupal stark theme layout. + * + * It is left empty for testing purposes. + * + * @see https://www.drupal.org/project/drupal/issues/2349711 + */ -- GitLab