下面是我当前项目的主要 scss 文件。我也在之后导入的 css_ve.scss 中使用这些变量。生成的 css 文件按预期工作,但 Scout 在日志面板中抛出错误,因为它在 css_ve.scss 中找不到变量声明。这是一个小问题,但我想知道如何防止这些错误发生。一种解决方案是仅为变量创建一个 scss 文件并从所有其他文件中导入它,但我想避免在我的项目中分散太多 scss 文件。
提前致谢!
/* VARIABLES ------------------------------ */
/* fonts */
$font-family-1: 'Arial', 'Meiryo', 'MS Gothic', 'MS UI Gothic', 'MS PGothic', 'Arial Unicode';
$font-family-2: 'MS UI Gothic', 'MS PGothic', 'Arial Unicode';
$font-size: 14px;
/* colors */
$color-1: #000000; /* black */
$color-2: #ffffff; /* white */
$color-3: #CCCCCC; /* grey */
$color-4: #00A3AF; /* green */
$color-5: #FF6600; /* orange */
/* IMPORTS ------------------------------ */
/* validationEngine */
@import "validation_engine/css_ve.scss";
/* STYLES ------------------------------ */
……