使用sass时不一致的缩进

ali*_*der 3 sass

我正在使用scss格式的sass(我使用括号).当我使用watch命令(sass --watch"文件夹,我有我所有的sass文件")时,我收到以下错误消息:

error sass (Line 37: Inconsistent indentation: 2 spaces were used for indentation, but the rest of the document was indented using 8 spaces.)
Run Code Online (Sandbox Code Playgroud)

行号是否与生成的css文件,scss文件或其他内容中的行号相对应(我将部分内容包含在我的base.scss文件中).

我的base.scss文件中的第37行以与其他行相同的方式缩进.

   font-family: Arial;
Run Code Online (Sandbox Code Playgroud)

ali*_*der 5

导航错误:我在错误的文件夹上使用了watch命令.切换到正确的文件夹后,我能够编译sass文件.