vue 里 使用 eslint 报错 error:Mixed spaces and tabs (no-mixed-spaces-and-tabs)
Posted 凯小默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 里 使用 eslint 报错 error:Mixed spaces and tabs (no-mixed-spaces-and-tabs)相关的知识,希望对你有一定的参考价值。
问题
报错如下:
解决
第一种:就是在 .eslintrc.js
那里关闭 no-mixed-spaces-and-tabs
规则
"no-mixed-spaces-and-tabs": "off"
第二种:就是解决这种问题:不要使用空格 和 tab 混合就行。
官网的描述:禁止使用空格 和 tab 混合缩进 (no-mixed-spaces-and-tabs),配置文件中的 "extends": "eslint:recommended"
属性启用了此规则。
大多数代码约定要求使用空格或 tab 进行缩进。因此,一行代码同时混有 tab 缩进和空格缩进,通常是错误的。
https://eslint.bootcss.com/docs/rules/no-mixed-spaces-and-tabs
以上是关于vue 里 使用 eslint 报错 error:Mixed spaces and tabs (no-mixed-spaces-and-tabs)的主要内容,如果未能解决你的问题,请参考以下文章
[eslint]报错:Vue eslint Parsing error: Unexpected token
npm run serve 启动前端vue工程报错:Error: No ESLint configuration found
Vue3如何关闭eslint:error Expected indentation of 0 spaces but found 4 indent