From d1324f0addb61abd0fa2c528203cb68b1e9c67da Mon Sep 17 00:00:00 2001 From: Patrick Fleming Date: Fri, 27 Sep 2024 09:56:58 +0100 Subject: [PATCH] Update CSS framework file I have disabled at-rule-no-unknown for this file which was causing unnecessary noise. --- app/assets/stylesheets/1st_load_framework.css.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/1st_load_framework.css.scss b/app/assets/stylesheets/1st_load_framework.css.scss index ef752e05..f29ee941 100644 --- a/app/assets/stylesheets/1st_load_framework.css.scss +++ b/app/assets/stylesheets/1st_load_framework.css.scss @@ -1,4 +1,4 @@ -/* stylelint-disable scss/at-extend-no-missing-placeholder */ +/* stylelint-disable scss/at-extend-no-missing-placeholder, at-rule-no-unknown */ // import the CSS framework // Do not use *= require in Sass or your other stylesheets will not be able to access the Bootstrap mixins and variables. @import "bootstrap"; @@ -53,4 +53,4 @@ section { margin-top: 20px; } -/* stylelint-enable scss/at-extend-no-missing-placeholder */ +/* stylelint-enable scss/at-extend-no-missing-placeholder, at-rule-no-unknown */