在我的Nuxt.js代码中,每当我在 .vue 文件中错误地缩进时,都会收到类似于以下内容的警告:
function()
我想将此警告转换为错误,所以我遵循documentation并执行了以下操作:
17:1 warning Expected indentation of 8 spaces but found 18 spaces vue/html-indent
✖ 1 problem (0 errors, 1 warning)
0 errors and 1 warning potentially fixable with the `--fix` option.
根据我的理解,通过编写“错误”(或等同于2的代码)而不是“警告”,我应该完成工作,但仍收到警告。我在这里误解了什么?
老实说,出于实际原因,我想继续收到警告,但是我很好奇如何将其触发为缩进错误。