8
我有這個在我的main.sass:薩斯編譯說:不一致的縮進
#thing
{
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
編譯時,薩斯說:
Inconsistent indentation: 7 spaces were used for indentation,
but the rest of the document was indented using 4 spaces.
有沒有辦法來抑制呢?
我已經添加了'#thing {}'來sass。我寫sass,而不是scss。這有什麼區別嗎? – Kriem
嘗試將擴展名更改爲SCSS並使用大括號進行測試。 SCSS應該忽略不一致的縮進。 –
該死,你是對的!這是scss而不是sass。如果您可以將其作爲答案,我會批准它。 :) – Kriem